Skip to content

fix: format with prettier #35

fix: format with prettier

fix: format with prettier #35

Workflow file for this run

on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
name: CI Tests
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm test