This repository has been archived by the owner on Apr 11, 2024. It is now read-only.
chore(deps): bump follow-redirects from 1.15.3 to 1.15.4 #2452
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: Continuous Integration | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Yarn Install | |
uses: ./.github/actions/yarn-install | |
- name: Run eslint | |
run: yarn lint | |
integrity: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Yarn Install | |
uses: ./.github/actions/yarn-install | |
- name: 'Integrity: Verify workspace integrity' | |
run: yarn integrity | |
- name: 'Integrity: Assert no changes (run `yarn integrity` if this fails)' | |
run: git diff --exit-code | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Yarn Install | |
uses: ./.github/actions/yarn-install | |
- name: Run build | |
run: yarn build |