Skip to content

Update config.ts (#773) #430

Update config.ts (#773)

Update config.ts (#773) #430

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://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
merge_group:
jobs:
build:
strategy:
fail-fast: false
matrix:
node-version: [18.x, 20.x, 21.x]
os: [ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.1.4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4.0.2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run pretest
- run: npm run test