Skip to content

Commit

Permalink
add basic ci for testing if build fails
Browse files Browse the repository at this point in the history
  • Loading branch information
kahlstrm committed Jan 12, 2024
1 parent 57ee090 commit 1fd772b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build on push
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build all
run: pnpm -r build

0 comments on commit 1fd772b

Please sign in to comment.