Bump follow-redirects from 1.15.5 to 1.15.6 #1
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: [pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: Setup npm registry | |
uses: ./.github/actions/npm-registry-setup | |
with: | |
token: ${{ secrets.PRIVATE_PACKAGE_REGISTRY_TOKEN }} | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Update linter | |
run: yarn upgrade @matterway/eslint-plugin --latest | |
- name: Run linter | |
run: yarn lint --quiet |