Skip to content

Commit

Permalink
chore(deps): add 14.15.4 remove 14.15.3 (jobs.test.strategy.matrix.no…
Browse files Browse the repository at this point in the history
…de-version)

chore: add 14.15.4 (jobs.release.steps.with.node-version)
  • Loading branch information
arlac77 committed Jan 6, 2021
1 parent d0d13b5 commit 0136e2b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
node-version:
- 14.15.3
- 14.15.4
steps:
- uses: actions/checkout@v2
- name: Cache node modules
Expand All @@ -22,19 +22,19 @@ jobs:
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: 'Build / Test Node ${{ matrix.node-version }}'
- name: Build / Test Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: '${{ matrix.node-version }}'
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm run cover --if-present
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
continue-on-error: true
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
flag-name: 'run-${{ matrix.test_number }}'
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: run-${{ matrix.test_number }}
path-to-lcov: build/coverage/lcov.info
parallel: true
release:
Expand All @@ -45,20 +45,20 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14.15.3
node-version: 14.15.4
- run: npm install
- run: npx semantic-release
env:
CI: 'true'
NPM_TOKEN: '${{ secrets.NPM_TOKEN }}'
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: build/coverage/lcov.info
parallel-finished: true

0 comments on commit 0136e2b

Please sign in to comment.