Merge pull request #175 from w3c/dependabot/npm_and_yarn/babel/traver… #2704
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
on: | |
push: | |
paths-ignore: | |
- 'issue-reports/**' | |
pull_request: | |
paths-ignore: | |
- 'issue-reports/**' | |
name: lint | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: Setup dependencies | |
run: npm ci | |
- name: Run lint | |
run: npm run lint |