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
+2 -1
View File
@@ -2,4 +2,5 @@
.nyc_output/
coverage/
dist/
node_modules/
node_modules/
.github/
+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
+2 -1
View File
@@ -1,4 +1,5 @@
./dist
./nyc_output
./coverage
./node_modules
./node_modules
./.github