Skip to content

Dependency update 2024 07 12 #4

Dependency update 2024 07 12

Dependency update 2024 07 12 #4

Workflow file for this run

name: Build 🛠️
on:
workflow_dispatch: # can call manually
push:
branches:
- master
pull_request:
jobs:
test:
name: Run the tests
strategy:
matrix:
node-version: ['18.x', '20.x']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm run test