2022-08-18 13:29:07 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-10-11 19:27:08 +00:00
|
|
|
branches: [ main, master ]
|
2022-08-18 13:29:07 +00:00
|
|
|
pull_request:
|
2023-10-11 19:27:08 +00:00
|
|
|
branches: [ main, master ]
|
2022-08-18 13:29:07 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-09-25 13:12:49 +00:00
|
|
|
node: [ 18, 20, 22 ]
|
2022-08-18 13:29:07 +00:00
|
|
|
name: Node.js ${{ matrix.node }}
|
|
|
|
steps:
|
2024-09-25 13:12:49 +00:00
|
|
|
- uses: actions/checkout@v4
|
2022-08-18 13:29:07 +00:00
|
|
|
- name: Setup node
|
2024-09-25 13:12:49 +00:00
|
|
|
uses: actions/setup-node@v4
|
2022-08-18 13:29:07 +00:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node }}
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm test
|