Skip to content

fix(deps): update dependency axios to v1.7.0 #2496

fix(deps): update dependency axios to v1.7.0

fix(deps): update dependency axios to v1.7.0 #2496

Workflow file for this run

name: Build
on:
push:
branches:
- master
merge_group:
types: [checks_requested]
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.20 ]
env:
YTF_GRAPHQL_ENDPOINT: https://staging.yestheory.family/_yesbot-schema
steps:
- uses: actions/checkout@v3
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache node modules
uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: install and compile
run: |
yarn install --frozen-lockfile
yarn graphql-codegen
yarn tsc --noEmit