Skip to content

Modernize dependencies and fix vulnerabilities #268

Modernize dependencies and fix vulnerabilities

Modernize dependencies and fix vulnerabilities #268

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
paths-ignore:
- '*.md'
- '.all-contributorsrc'
pull_request:
paths-ignore:
- '*.md'
- '.all-contributorsrc'
workflow_dispatch:
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 20
- run: corepack enable
- run: yarn --version
- run: yarn install --immutable
- run: yarn test:ci
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
if: success()