feat: begin working on lint_test_format workflow

This commit is contained in:
Stevan Freeborn
2023-02-20 09:51:35 -06:00
parent 88531bc9e3
commit dd16c4ecf0
3 changed files with 28 additions and 2 deletions
+24
View File
@@ -0,0 +1,24 @@
name: lint_test_format
on:
- workflow_dispatch: {}
jobs:
lint:
name: lint
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- name: Check out repository
- uses: actions/checkout@v3
- name: Setup node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run lint-fix
run: npm run lint-fix