Skip to content

Commit

Permalink
Add prebuild workflow (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
NonSpicyBurrito authored Jul 2, 2024
1 parent 84cc85d commit 22933c5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/prebuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Prebuild

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

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'npm'
- run: npm ci
- run: npm run prebuild

0 comments on commit 22933c5

Please sign in to comment.