Skip to content

Merge pull request #306 from pact-foundation/renovate/lint-staged-15.x #340

Merge pull request #306 from pact-foundation/renovate/lint-staged-15.x

Merge pull request #306 from pact-foundation/renovate/lint-staged-15.x #340

name: Build and test
on:
push:
pull_request:
branches: [master]
jobs:
build-and-test-osx:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
os: [macos-13, macos-latest]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: scripts/ci/build-and-test.sh
env:
NODE_VERSION: ${{ matrix.node-version }}
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.node-version }}-${{ runner.os }}
parallel: true
build-and-test-ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: scripts/ci/build-and-test.sh
env:
NODE_VERSION: ${{ matrix.node-version }}
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.node-version }}-ubuntu
parallel: true
build-and-test-windows:
runs-on: windows-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: bash scripts/ci/build-and-test.sh
shell: bash
env:
NODE_VERSION: ${{ matrix.node-version }}
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.node-version }}-windows
parallel: true
finish:
needs:
- build-and-test-osx
- build-and-test-ubuntu
- build-and-test-windows
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true