Skip to content

Bump the npm_and_yarn group with 2 updates #34

Bump the npm_and_yarn group with 2 updates

Bump the npm_and_yarn group with 2 updates #34

Workflow file for this run

name: Test and coverage checks
on:
push:
branches: [$default-branch, $protected-branches]
pull_request: {}
jobs:
eslint:
name: Run coverage scanning
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: 'Install Node'
uses: actions/setup-node@v4
with:
node-version: 20
check-latest: true
- name: Setup yarn
run: |
corepack enable yarn
corepack install
- name: Install dependencies
run: |
yarn --frozen-lockfile
- name: Check test coverage
run: |
mkdir logs
yarn coverage