Skip to content

Commit

Permalink
Add PR checks
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarton committed Jul 15, 2024
1 parent 2926d80 commit b60ac5d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Check build and tests on PR and merge to live

on:
pull_request:
branches:
- "*"
push:
branches:
- live

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- run: npm install
- run: npm run build
- run: npm test
File renamed without changes.

0 comments on commit b60ac5d

Please sign in to comment.