Skip to content

fmt

fmt #2

Workflow file for this run

name: CI
on: [push]
jobs:
javascript-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.8.1
cache: "yarn"
- name: Install dependencies
run: yarn install --immutable
- name: Lint
run: yarn lint
- name: Code formatting
run: yarn fmt:check