Skip to content

Run tests on PR

Run tests on PR #3

Workflow file for this run

name: Run tests
on:
pull_request:
permissions:
contents: read
jobs:
run-tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f
with:
registry-url: 'https://registry.npmjs.org'
node-version: '>=24.7.0'
- run: npm i
- run: npm test
- run: npm run build