Bump axios from 0.22.0 to 1.6.0 #13274
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: Build and test | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened] | |
concurrency: | |
group: ${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Linter | |
runs-on: ubuntu-latest | |
env: | |
CONFIG_URL: ${{ secrets.CONFIG_URL }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.12 | |
- uses: actions/cache@v3 | |
id: yarn-cache | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | |
- name: Install packages | |
if: steps.yarn-cache.outputs.cache-hit != 'true' | |
run: yarn --no-progress --non-interactive --frozen-lockfile | |
- name: Run postinstall | |
if: steps.yarn-cache.outputs.cache-hit == 'true' | |
run: yarn postinstall | |
- name: Lint | |
run: yarn lint | |
prettier: | |
name: Prettier | |
runs-on: ubuntu-latest | |
env: | |
CONFIG_URL: ${{ secrets.CONFIG_URL }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.12 | |
- uses: actions/cache@v3 | |
id: yarn-cache | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | |
- name: Install packages | |
if: steps.yarn-cache.outputs.cache-hit != 'true' | |
run: yarn --no-progress --non-interactive --frozen-lockfile | |
- name: Run postinstall | |
if: steps.yarn-cache.outputs.cache-hit == 'true' | |
run: yarn postinstall | |
- name: Prettier | |
run: yarn format | |
typecheck: | |
name: Typecheck | |
runs-on: ubuntu-latest | |
env: | |
CONFIG_URL: ${{ secrets.CONFIG_URL }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.12 | |
- uses: actions/cache@v3 | |
id: yarn-cache | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | |
- name: Install packages | |
if: steps.yarn-cache.outputs.cache-hit != 'true' | |
run: yarn --no-progress --non-interactive --frozen-lockfile | |
- name: Run postinstall | |
if: steps.yarn-cache.outputs.cache-hit == 'true' | |
run: yarn postinstall | |
- name: Typecheck | |
run: yarn typecheck | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
env: | |
CONFIG_URL: ${{ secrets.CONFIG_URL }} | |
strategy: | |
matrix: | |
shard: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.12 | |
- uses: actions/cache@v3 | |
id: yarn-cache | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | |
- name: Install packages | |
if: steps.yarn-cache.outputs.cache-hit != 'true' | |
run: yarn --no-progress --non-interactive --frozen-lockfile | |
- name: Run postinstall | |
if: steps.yarn-cache.outputs.cache-hit == 'true' | |
run: yarn postinstall | |
- name: Test | |
run: CI=true yarn test --shard=${{ matrix.shard }}/${{ strategy.job-total }} |