Skip to content

Bump @types/node from 20.10.3 to 20.10.7 #62

Bump @types/node from 20.10.3 to 20.10.7

Bump @types/node from 20.10.3 to 20.10.7 #62

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check formatting
run: yarn lint
- name: Run tests
run: |
yarn build
yarn test
yarn validate