Skip to content

Upgrade Node for security #160

Upgrade Node for security

Upgrade Node for security #160

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn
- name: Check formatting
run: yarn format:check
- name: Lint files
run: yarn lint
- name: Run tests
run: yarn test-only