Skip to content

Commit

Permalink
build: Add PR pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Danielku15 committed May 14, 2024
1 parent feeb0f4 commit af47c80
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build PR
on:
pull_request:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: npm install
- run: npm install @coderline/alphatab@alpha
- run: npm run build
- run: cp web.config ./build
- uses: actions/upload-artifact@v4
with:
name: website
path: ./build/

0 comments on commit af47c80

Please sign in to comment.