Skip to content

Commit

Permalink
Added ci task to just build on any branch. updated publish to use cac…
Browse files Browse the repository at this point in the history
…he (#12)
  • Loading branch information
oveddan authored Dec 8, 2023
1 parent 443efa6 commit c9be5ff
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 433 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build

on: push

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout 🛎️
uses: actions/checkout@master

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: "yarn"

- name: Install project dependencies
shell: bash
run: yarn

- name: Build 🏗️
run: yarn build
7 changes: 5 additions & 2 deletions .github/actions/publish.yml → .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ jobs:
- name: Checkout 🛎️
uses: actions/checkout@master

- name: Install 🔧
run: yarn install
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: "yarn"

- name: Build 🏗️
run: yarn build
Expand Down
304 changes: 0 additions & 304 deletions src/app.ts

This file was deleted.

Loading

0 comments on commit c9be5ff

Please sign in to comment.