Skip to content

fix: Run 'npm pkg fix' #92

fix: Run 'npm pkg fix'

fix: Run 'npm pkg fix' #92

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm install
- name: Execute build
run: npm run build
- name: Execute tests
run: npm run test-ci
- name: Check formatting
run: npx prettier . --check