feat: begin working on lint_test_format workflow
This commit is contained in:
@@ -3,3 +3,4 @@
|
|||||||
coverage/
|
coverage/
|
||||||
dist/
|
dist/
|
||||||
node_modules/
|
node_modules/
|
||||||
|
.github/
|
||||||
@@ -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,3 +2,4 @@
|
|||||||
./nyc_output
|
./nyc_output
|
||||||
./coverage
|
./coverage
|
||||||
./node_modules
|
./node_modules
|
||||||
|
./.github
|
||||||
Reference in New Issue
Block a user