-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: remove coverage threshold check, update runner OSes
- Loading branch information
1 parent
aade572
commit 9f4b41c
Showing
3 changed files
with
7 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ on: | |
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
timeout-minutes: 10 | ||
env: | ||
CI: 'true' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,15 +4,14 @@ name: Continuous Integration | |
on: | ||
push: | ||
pull_request: | ||
pull_request_target: | ||
|
||
jobs: | ||
verify: | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-22.04 | ||
- macos-13 | ||
- ubuntu-24.04 | ||
- macos-15 | ||
- windows-2022 | ||
node: | ||
- 18 | ||
|
@@ -35,32 +34,5 @@ jobs: | |
- run: make install | ||
- run: make compile | ||
|
||
- name: ESLint | ||
run: make lint | ||
- name: Tests | ||
run: make test | ||
|
||
coverage: | ||
runs-on: ubuntu-22.04 | ||
timeout-minutes: 10 | ||
env: | ||
CI: 'true' | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 22 | ||
|
||
- run: make install | ||
- run: make compile | ||
- run: make coverage | ||
|
||
- uses: devmasx/[email protected] | ||
with: | ||
type: lcov | ||
result_path: coverage/lcov.info | ||
min_coverage: 90 | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
- run: make lint | ||
- run: make test |