Skip to content

Tweak naming, remove unnecessary error check #6

Tweak naming, remove unnecessary error check

Tweak naming, remove unnecessary error check #6

Workflow file for this run

name: CI
on: [push]
jobs:
ci:
name: CI
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install Dependencies
run: npm ci
- name: Check Formatting
run: npm run format:check
- name: Run ESLint
run: npm run lint --workspaces
- name: Run Tests
run: npm test