chore(deps): update dependency @types/node to v18 - autoclosed #666
Workflow file for this run
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
name: Lint | |
on: | |
push: | |
pull_request: | |
jobs: | |
eslint: | |
name: eslint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install node v12 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 12 | |
- name: npm install | |
run: npm install | |
- name: eslint | |
uses: icrawl/action-eslint@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
job-name: eslint |