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