fix: update lint job to only run on one version of node

This commit is contained in:
Stevan Freeborn
2023-02-20 11:09:29 -06:00
parent c804bcc85e
commit 3e4f7047d3
+5 -5
View File
@@ -5,23 +5,23 @@ jobs:
lint: lint:
name: lint name: lint
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps: steps:
- name: Check out repository - name: Check out repository
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Setup node ${{ matrix.node-version }} - name: Setup node
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: ${{ matrix.node-version }} node-version: 18.x
- name: Install dependencies - name: Install dependencies
run: npm install run: npm install
- name: Run lint-fix - name: Run lint-fix
run: npm run lint-fix run: npm run lint-fix
- name: Commit changes - name: Commit changes
uses: EndBug/add-and-commit@v9 uses: EndBug/add-and-commit@v9
with:
commit: --no-verify
test: test:
needs: lint
name: test name: test
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy: