-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (30 loc) · 861 Bytes
/
Copy pathnodejs.yml
File metadata and controls
34 lines (30 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Node CI
on: [push, pull_request]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
env:
FORCE_COLOR: '1'
name: Build & Test
runs-on: ubuntu-latest
strategy:
matrix:
include:
- node-version: '22'
- node-version: '24'
steps:
- name: Checkout Repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: ./.github/actions/prepare
with:
node-version: ${{ matrix.node-version }}
- name: Test
env:
NODE_OPTIONS: '--test-reporter=node-test-github-reporter --test-reporter=spec --test-reporter-destination=stdout --test-reporter-destination=stderr'
run: npm test