Skip to content

build(deps-dev): bump eslint-plugin-jest from 27.6.3 to 27.8.0 #2997

build(deps-dev): bump eslint-plugin-jest from 27.6.3 to 27.8.0

build(deps-dev): bump eslint-plugin-jest from 27.6.3 to 27.8.0 #2997

Workflow file for this run

name: Node CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: "yarn"
- run: yarn install --frozen-lockfile
- run: yarn lint
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [16.x, 18.x, 20.x]
env:
ENABLE_COVERAGE: true
AST_COMPARE: true
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: yarn install --frozen-lockfile
- run: yarn c8 yarn test:node
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
files: coverage/lcov.info
- run: yarn test:standalone