Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

resolution on this babel package used by jest that has a critical sec… #110

resolution on this babel package used by jest that has a critical sec…

resolution on this babel package used by jest that has a critical sec… #110

Workflow file for this run

name: check
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
# runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [20]
# os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- run: corepack enable
- run: yarn --version
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install --immutable
- run: yarn audit
- run: yarn lint
- run: yarn test.ci