Skip to content

Commit

Permalink
feat: set up GitHub build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jianyuan committed Apr 7, 2024
1 parent 64f387f commit 80d2008
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build

on:
push:
branches:
- main

env:
PUBLIC_POCKETBASE_URL: http://127.0.0.1:8090

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
- run: npm install
- run: npm run build

0 comments on commit 80d2008

Please sign in to comment.