chore(deps-dev): bump js-yaml from 3.14.1 to 3.14.2 #76
This file contains hidden or 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: | |
| stylelint: | |
| name: SCSS Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20 | |
| - name: Use public npm registry | |
| run: npm config set registry https://registry.npmjs.org/ | |
| - name: Check npm registry | |
| run: npm config get registry | |
| - name: Lint scss | |
| run: npm ci && npm run scss-lint | |
| eslint: | |
| name: ESLint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20 | |
| - name: Use public npm registry | |
| run: npm config set registry https://registry.npmjs.org/ | |
| - name: Lint js | |
| run: touch ./webpack/.env && npm ci && npm run lint |