Skip to content

Commit

Permalink
Modernize build tooling a little bit
Browse files Browse the repository at this point in the history
  • Loading branch information
ahocevar committed Oct 10, 2024
1 parent 9b864cc commit 5d8b48b
Show file tree
Hide file tree
Showing 6 changed files with 1,246 additions and 21 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run Tests on Pull Request

on:
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm test
Loading

0 comments on commit 5d8b48b

Please sign in to comment.