Skip to content

Commit de1051f

Browse files
chore: update with master
2 parents 7be3a9b + 9f4b41c commit de1051f

File tree

5 files changed

+6162
-3829
lines changed

5 files changed

+6162
-3829
lines changed

.github/workflows/commitlint.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ on:
88

99
jobs:
1010
commitlint:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212
timeout-minutes: 5
1313
env:
1414
CI: 'true'
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
20-
- uses: actions/setup-node@v3
20+
- uses: actions/setup-node@v4
2121
with:
22-
node-version: 20
22+
node-version: 22
2323
cache: npm
2424

2525
- run: make install

.github/workflows/deployment.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ on:
88

99
jobs:
1010
release:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212
timeout-minutes: 10
1313
env:
1414
CI: 'true'
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
20-
- uses: actions/setup-node@v3
20+
- uses: actions/setup-node@v4
2121
with:
22-
node-version: 20
22+
node-version: 22
2323
cache: npm
2424

2525
- run: make install

.github/workflows/integration.yaml

Lines changed: 6 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@ name: Continuous Integration
44
on:
55
push:
66
pull_request:
7-
pull_request_target:
87

98
jobs:
109
verify:
1110
strategy:
1211
matrix:
1312
os:
14-
- ubuntu-22.04
15-
- macos-13
13+
- ubuntu-24.04
14+
- macos-15
1615
- windows-2022
1716
node:
1817
- 18
@@ -26,43 +25,16 @@ jobs:
2625
CI: 'true'
2726

2827
steps:
29-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
3029
with:
3130
fetch-depth: 0
32-
- uses: actions/setup-node@v3
31+
- uses: actions/setup-node@v4
3332
with:
3433
node-version: ${{ matrix.node }}
3534
cache: npm
3635

3736
- run: make install
3837
- run: make compile
3938

40-
- name: ESLint
41-
run: make lint
42-
- name: Tests
43-
run: make test
44-
45-
coverage:
46-
runs-on: ubuntu-22.04
47-
timeout-minutes: 10
48-
env:
49-
CI: 'true'
50-
51-
steps:
52-
- uses: actions/checkout@v3
53-
with:
54-
fetch-depth: 0
55-
- uses: actions/setup-node@v3
56-
with:
57-
node-version: 20
58-
59-
- run: make install
60-
- run: make compile
61-
- run: make coverage
62-
63-
- uses: devmasx/coverage-check-action@v1.1.0
64-
with:
65-
type: lcov
66-
result_path: coverage/lcov.info
67-
min_coverage: 90
68-
token: ${{ secrets.GITHUB_TOKEN }}
39+
- run: make lint
40+
- run: make test

0 commit comments

Comments
 (0)