Skip to content

Commit

Permalink
Merge pull request #12 from luispabon/update-pipelines
Browse files Browse the repository at this point in the history
Update pipelines
  • Loading branch information
luispabon authored Oct 11, 2023
2 parents 70d4166 + 6b2f4d5 commit 3fdfa1d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'

- name: NPM install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Initialise environment
run: make install
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Unit tests
run: make test

- uses: codecov/codecov-action@v2
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
verbose: false

0 comments on commit 3fdfa1d

Please sign in to comment.