Skip to content

chore: setup ci/cd and apply prettier suggestions #1

chore: setup ci/cd and apply prettier suggestions

chore: setup ci/cd and apply prettier suggestions #1

Workflow file for this run

name: Run tests and checks
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '22'
- name: Install dependencies
run: npm install
- name: Run tests and checks
run: npm run precommit