Skip to content

Commit

Permalink
Add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
miikaah committed Jul 7, 2024
1 parent 324d8e8 commit bbe400a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Test

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
test:
runs-on: ubuntu-latest
permissions:
packages: read
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://npm.pkg.github.com/
- run: npm ci
env:
MUSA_GITHUB_PAT: ${{ secrets.MUSA_GITHUB_PAT }}
- run: npm run build

0 comments on commit bbe400a

Please sign in to comment.