Skip to content

Fix typo

Fix typo #497

Workflow file for this run

name: Testing
on:
push:
branches:
- '**'
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- name: Setup Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
- name: Install dependencies
run: yarn install
- name: Lint code base
run: yarn run format:check
- name: Run tests
run: yarn test
- name: Audit packages
run: yarn audit --level=high
if: matrix.operating-system == 'ubuntu-latest'
continue-on-error: true