Skip to content

chore(deps): bump @nestjs/axios from 3.0.0 to 3.0.1 #78

chore(deps): bump @nestjs/axios from 3.0.0 to 3.0.1

chore(deps): bump @nestjs/axios from 3.0.0 to 3.0.1 #78

Workflow file for this run

name: code-gear > lint
on:
pull_request:
branches:
- master
push:
branches:
- master
permissions:
contents: write
jobs:
lint:
name: Linting project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@v3
with:
main-branch-name: 'master'
- run: |
echo "BASE: ${{ env.NX_BASE }}"
echo "HEAD: ${{ env.NX_HEAD }}"
- name: Installing Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.8.0
- name: Cache Yarn dependencies
uses: actions/cache@v2
with:
path: |
~/.cache/yarn
~/.yarn/cache
.yarn/cache
node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/*.yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Installing dependencies
run: yarn install
- name: Linting project
run: yarn nx run root:lint