This repository has been archived by the owner on Apr 5, 2024. It is now read-only.
Removed deprecated (now unsupported) rules to fix dependabot failed update (#661) #544
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Based on Node.js starter workflow | |
# https://github.com/actions/starter-workflows/blob/main/ci/node.js.yml | |
name: Lint | |
on: | |
pull_request: | |
branches: [ gh-pages ] | |
push: | |
branches: [ "**" ] | |
jobs: | |
Lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 18.x ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
- run: npm run lint |