Skip to content

chore(deps-dev): bump @typescript-eslint/parser from 5.60.0 to 6.0.0 #445

chore(deps-dev): bump @typescript-eslint/parser from 5.60.0 to 6.0.0

chore(deps-dev): bump @typescript-eslint/parser from 5.60.0 to 6.0.0 #445

Workflow file for this run

name: pr
on: pull_request
jobs:
build:
name: Build and test
strategy:
matrix:
os:
- ubuntu-latest
# - macos-latest
# - windows-latest
node-version: [16.x, 18.x, 19.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: volta-cli/action@v3
with:
node-version: ${{ matrix.node-version }}
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache node modules
id: yarn-cache
uses: actions/cache@v3
with:
path: |
${{ steps.yarn-cache-dir-path.outputs.dir }}
node_modules
key: ${{ runner.os }}-${{ matrix.node-version }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-${{ matrix.node-version }}-yarn-
- run: yarn install
- run: yarn build
- run: yarn test