Skip to content

Try parallel jobs #266

Try parallel jobs

Try parallel jobs #266

Workflow file for this run

name: Miew CI/CD
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
node: [18, 20]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Run CI script
run: yarn run ci
- name: Collect coverage
run: yarn run merge-cover
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.COVERALLS_TOKEN }}
path-to-lcov: ./coverage/lcov.info
debug: true
flag-name: run-${{ join(matrix.*, '-') }}
parallel: true
finish:
needs: build
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
with:
parallel-finished: true
carryforward: "run-18,run-20"