-
Notifications
You must be signed in to change notification settings - Fork 88
66 lines (65 loc) · 2.04 KB
/
test.yml
File metadata and controls
66 lines (65 loc) · 2.04 KB
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
name: Test
"on":
push:
branches:
- master
- renovate/**
pull_request:
types:
- opened
- synchronize
jobs:
test_matrix:
strategy:
matrix:
node-version:
- 20.8.1 # minimum supported Node version
- 20
- 21
- 22
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: "${{ matrix.os }}"
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: "Use Node.js ${{ matrix.node-version }}"
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: "${{ matrix.node-version }}"
cache: npm
- run: npm ci
- name: Ensure dependencies are compatible with the version of node
run: npx ls-engines@v0.9.4
- run: npm run test
test:
runs-on: ubuntu-latest
needs: test_matrix
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: "Use Node.js ${{ matrix.node-version }}"
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: "${{ matrix.node-version }}"
cache: npm
- run: npm ci
- run: npm run lint
dry_release:
# permissions:
# contents: read # to be able to publish a GitHub release
# issues: read # to be able to comment on released issues
# pull-requests: write # to be able to comment on released pull requests
# id-token: write # to enable use of OIDC for npm provenance
name: dry_release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
cache: npm
node-version: lts/*
- run: npm ci
- run: npx semantic-release --dry-run --ci false --branches $GITHUB_REF
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}