Skip to content

Merge pull request #100 from github/gracepark-actions-maintenance #22

Merge pull request #100 from github/gracepark-actions-maintenance

Merge pull request #100 from github/gracepark-actions-maintenance #22

Workflow file for this run

name: Node CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm test
env:
CI: true