Skip to content

Commit

Permalink
Update CI dependencies and fix some issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kse3hi committed Feb 6, 2024
1 parent d9ce7e0 commit 89da0f7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run Linters
uses: pre-commit/[email protected]
Expand All @@ -34,8 +34,8 @@ jobs:
runs-on: ubuntu-latest
name: Run unit tests and publish package on main
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/Hydrogen'
check-latest: true
Expand All @@ -45,7 +45,7 @@ jobs:
- run: npm run build
- run: npm run coverage

- uses: 5monkeys/cobertura-action@master
- uses: 5monkeys/cobertura-action@v13
with:
path: coverage/cobertura-coverage.xml
minimum_coverage: 80
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,14 @@
name: Publish Package to GitHub
on:
workflow_dispatch:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
name: Publish package on main
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
check-latest: true
Expand Down

0 comments on commit 89da0f7

Please sign in to comment.