Skip to content

Remove indent size config #250

Remove indent size config

Remove indent size config #250

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Lint and test
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- name: Checkout repo
uses: actions/checkout@v4
# https://github.com/pnpm/action-setup
- uses: pnpm/action-setup@v3
with:
version: 6
# https://github.com/actions/setup-node
- name: Setup Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint
run: npm run lint
- name: Test
run: npm test