Skip to content

Merge pull request #8 from commenthol/chore-maintenance #12

Merge pull request #8 from commenthol/chore-maintenance

Merge pull request #8 from commenthol/chore-maintenance #12

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://github.com/marketplace/actions/setup-node-js-environment
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CI: "true"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 20, 22 ]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install --ignore-scripts
- run: npm run ci