-
-
Notifications
You must be signed in to change notification settings - Fork 793
55 lines (41 loc) · 1.02 KB
/
nodejs.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: node.js
on:
pull_request:
branches: [master]
push:
branches: [master]
env:
FORCE_COLOR: 1
PRINT_OFFLINE_OUTPUT: 1
jobs:
build:
name: "[${{ matrix.os }}] node.js v${{ matrix.node-version }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-12, ubuntu-latest, windows-latest]
node-version: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: actions/setup-go@v4
with:
go-version: "1"
- uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "8"
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- uses: ruby/setup-ruby@v1
with:
ruby-version: "2.7"
- run: npm ci
- run: npm run prettier
- run: npm run lint
- run: npm test