Skip to content

Merge pull request #53 from wachunga/github-action-build #6

Merge pull request #53 from wachunga/github-action-build

Merge pull request #53 from wachunga/github-action-build #6

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm run test:ci --runInBand