-
-
Notifications
You must be signed in to change notification settings - Fork 52
36 lines (33 loc) · 701 Bytes
/
nodejs.yml
File metadata and controls
36 lines (33 loc) · 701 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
35
36
name: Tests
on:
push:
branches:
- main
tags:
- '!*'
pull_request:
workflow_dispatch:
env:
FORCE_COLOR: 2
jobs:
test:
name: Node.js ${{ matrix.node }} on ${{ matrix.os }}
timeout-minutes: 3
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node: [24]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: corepack enable npm
- run: npm --version
- run: npm install
- run: npm run lint
- run: npm run test