Skip to content

Commit

Permalink
CI: split lint worflow
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Apr 8, 2023
1 parent d79cffc commit ac689e1
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
39 changes: 39 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Lint

on:
push:
branches:
- main
- "!dependabot/**"
pull_request:
workflow_dispatch:

env:
FORCE_COLOR: 2
NODE: 18 # The Node.js version to run lint on

jobs:
run:
name: Lint
runs-on: ubuntu-latest

steps:
- name: Clone repository
uses: actions/checkout@v3
with:
persist-credentials: false

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE }}
cache: npm

- name: Install npm dependencies
run: npm ci

- name: Run lint
run: npm run lint

- name: Check types
run: npm run tsc
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"fix": "xo --fix",
"tsc": "tsc --esModuleInterop --noEmit test/index.ts",
"test": "npm run lint && npm run mocha && npm run tsc",
"test:cov": "c8 npm run test"
"test:cov": "c8 npm run mocha"
},
"keywords": [
"static",
Expand Down

0 comments on commit ac689e1

Please sign in to comment.