Skip to content

Commit

Permalink
try out build on push with github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nickzoic committed Jan 17, 2024
1 parent d9f37ab commit 7d9a541
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build-on-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build (On Push)
on:
push:

jobs:
build:
runs-on: ubuntu-latest
name: Build
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '14.x'
cache: 'npm'
- run: npm ci
- run: npx browserslist@latest --update-db
- run: npm run build
# - run: npm test

0 comments on commit 7d9a541

Please sign in to comment.