Skip to content

Commit

Permalink
chore: add GitHub Workflow
Browse files Browse the repository at this point in the history
beeman committed Oct 14, 2024
1 parent 663f9a7 commit 4116218
Showing 2 changed files with 33 additions and 1 deletion.
31 changes: 31 additions & 0 deletions .github/workflows/test-web.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Test and Build Web

on:
pull_request:
push:
branches: ['main']

jobs:
test-and-build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build project
run: pnpm build
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -44,5 +44,6 @@
"vite": "^5.4.1",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-tsconfig-paths": "^5.0.1"
}
},
"packageManager": "[email protected]+sha512.dc09430156b427f5ecfc79888899e1c39d2d690f004be70e05230b72cb173d96839587545d09429b55ac3c429c801b4dc3c0e002f653830a420fa2dd4e3cf9cf"
}

0 comments on commit 4116218

Please sign in to comment.