Skip to content

style: run fmt command #76

style: run fmt command

style: run fmt command #76

Workflow file for this run

name: checks
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
- name: Install dependencies
run: corepack pnpm install
- name: Run tests
run: corepack pnpm run test