Merge pull request #2585 from template-tools/dependabot/npm_and_yarn/… #3925
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
'on': | |
push: | |
branches: | |
- master | |
- next | |
pull_request: | |
branches: | |
- master | |
- next | |
jobs: | |
test-node: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 1 | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
node-version: | |
- 18.18.0 | |
- 20.8.0 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
- run: npm ci | |
- run: npm run cover --if-present | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
- name: Coveralls Parallel | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
flag-name: run-${{ matrix.test_number }} | |
path-to-lcov: build/coverage/lcov.info | |
parallel: true | |
continue-on-error: true | |
release: | |
needs: | |
- test-node | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
node-version: 18.18.0 | |
cache: npm | |
- run: npm ci | |
- run: npx semantic-release | |
env: | |
CI: 'true' | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PKGBUILD_PUBLISH: ${{ secrets.PKGBUILD_PUBLISH }} | |
finish: | |
needs: | |
- test-node | |
runs-on: ubuntu-latest | |
steps: | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: build/coverage/lcov.info | |
parallel-finished: true |