Skip to content

chore(deps): update typescript-eslint monorepo to v6.18.1 #778

chore(deps): update typescript-eslint monorepo to v6.18.1

chore(deps): update typescript-eslint monorepo to v6.18.1 #778

Workflow file for this run

name: CI
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['18', '20']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Get Yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Yarn cache
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Build
run: yarn build
- name: Test
env:
SITE: SHEPHERD_DOT_DIRECTORY="./fixtures/artifacts/.shepherd"
run: yarn test