Skip to content

Bump np from 10.0.4 to 10.0.5 #572

Bump np from 10.0.4 to 10.0.5

Bump np from 10.0.4 to 10.0.5 #572

Workflow file for this run

name: Tests
on: [push, pull_request]
env:
CI: true
jobs:
run:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node: [20]
os: [ubuntu-latest, windows-latest]
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Set Node.js version
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install yarn dependencies
run: yarn install
- name: Lint
run: yarn lint
- name: Run jest tests
run: yarn test