Skip to content

chore(deps-dev): bump @typescript-eslint/parser from 6.7.5 to 6.9.0 #1522

chore(deps-dev): bump @typescript-eslint/parser from 6.7.5 to 6.9.0

chore(deps-dev): bump @typescript-eslint/parser from 6.7.5 to 6.9.0 #1522

Workflow file for this run

name: Test Code
on:
workflow_dispatch:
push:
branches: [master]
pull_request_target:
branches:
- master
permissions:
contents: write
env:
CI: 1
jobs:
test:
name: Test code
runs-on: ubuntu-latest
timeout-minutes: 60
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
strategy:
matrix:
node-version: [16, 18, 20]
steps:
- name: Force PNPM to use HTTPS instead of SSH
run: |
git config --global url."https://github.com/".insteadOf git@github.com:
git config --global url."https://".insteadOf git://
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v3
with:
ssh-key: ${{ secrets.SSH_KEY }}
- uses: pnpm/action-setup@v2
with:
version: latest
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Build project
run: pnpm build
- name: Test code
run: pnpm test