Skip to content

Commit

Permalink
chore: remove coverage threshold check, update runner OSes
Browse files Browse the repository at this point in the history
  • Loading branch information
robertrossmann committed Jan 13, 2025
1 parent aade572 commit 9f4b41c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 35 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/commitlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
commitlint:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 5
env:
CI: 'true'
Expand All @@ -19,7 +19,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
cache: npm

- run: make install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
release:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10
env:
CI: 'true'
Expand Down
36 changes: 4 additions & 32 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 9f4b41c

Please sign in to comment.