-
Notifications
You must be signed in to change notification settings - Fork 12
90 lines (84 loc) · 2.07 KB
/
nodejs-ci.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: Node.js CI
on: pull_request
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ubuntu-build:
runs-on: ubuntu-latest
name: Build on Ubuntu
env:
DISPLAY: ":99.0"
CI: true
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: lts/*
- run: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
name: Start Xvfb
- run: npm ci
- run: npm run vscode:prepublish
- run: npm run test-compile
- run: npm test
name: Test
- run: npm run lint
name: ESLint
macos-build:
runs-on: macos-latest
name: Build on MacOS
env:
CI: true
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: lts/*
- run: npm ci
- run: npm run vscode:prepublish
- run: npm run test-compile
- run: npm test
name: Test
- run: npm run lint
name: ESLint
windows-build:
runs-on: windows-latest
name: Build on Windows
env:
CI: true
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: lts/*
- run: npm ci
- run: npm run vscode:prepublish
- run: npm run test-compile
- run: npm test
name: Test
- run: npm run lint
name: ESLint
cz-dry-run:
needs:
- ubuntu-build
- macos-build
- windows-build
name: "Dry run Commitizen bump"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create bump and changelog
uses: commitizen-tools/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
check_consistency: true
dry_run: true