Skip to content

Merge pull request #36 from Liudon/main #64

Merge pull request #36 from Liudon/main

Merge pull request #36 from Liudon/main #64

Workflow file for this run

name: Lint CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run lint