Skip to content

Commit

Permalink
Merge pull request #8 from mrbatista/fix/update-github-actions
Browse files Browse the repository at this point in the history
fix(upgrade): upgrade all github actions
  • Loading branch information
mrbatista committed Oct 27, 2022
2 parents 1298edc + 8470b80 commit cd469f7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14.x, 16.x, 18.x]
node-version: [16.x, 18.x]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Bootstrap project
Expand All @@ -37,17 +37,17 @@ jobs:
run: npm run coverage:ci
- name: Coveralls
if: matrix.os == 'ubuntu-latest' && matrix.node-version == '14.x'
uses: coverallsapp/github-action@v1.1.2
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

code-lint:
name: Code Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 18
- name: Bootstrap project
Expand All @@ -63,11 +63,11 @@ jobs:
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
needs: [test, code-lint]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
- name: Bootstrap project
run: npm ci
- name: Build project
Expand Down

0 comments on commit cd469f7

Please sign in to comment.