Skip to content

Update dev dep versions #27

Update dev dep versions

Update dev dep versions #27

Workflow file for this run

name: Validate
on: push
jobs:
test:
name: Lint & Test
runs-on: ubuntu-latest
env:
CI: true
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
cache: yarn
node-version-file: package.json
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Lint
run: yarn lint
- name: Test
run: yarn test