Skip to content

Trying to add check actions #1

Trying to add check actions

Trying to add check actions #1

Workflow file for this run

name: Test and coverage checks
on: [push, pull_request]
jobs:
eslint:
name: Run eslint 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@1
- name: Install dependencies
run: |
yarn --frozen-lockfile --ignore-scripts
- name: Check test coverage
run: |
yarn coverage