Skip to content

npm init + CI

npm init + CI #20

Workflow file for this run

name: Lint
on:
pull_request:
types: [opened, edited, reopened, synchronize]
jobs:
ci:
runs-on: ubuntu-latest
steps:
# - name: Actions checkout
# uses: actions/checkout@v4
- name: Setup node env
uses: actions/setup-node@v4
with:
node-version: 21
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run style:all