Skip to content

Create forty-jobs-boil.md #554

Create forty-jobs-boil.md

Create forty-jobs-boil.md #554

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
ci:
name: Lint and Test with Node.js ${{ matrix.node }} on ${{ matrix.os }}
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
node:
- 16
- 18
- 20
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Build, Lint and Test
run: |
yarn lint
yarn test
continue-on-error: ${{ matrix.os == 'windows-latest' }}
env:
EFF_NO_LINK_RULES: true
PARSER_NO_WATCH: true
- name: Codecov
uses: codecov/codecov-action@v3