chore(deps): update typescript-eslint monorepo to ^8.12.2 #161
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
node-version: [18.x, 20.x] | |
runs-on: ${{ matrix.os }} | |
environment: ${{ github.event_name == 'push' && 'Production' || 'Preview' }} | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Cache ~/.pnpm-store | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-pnpm-store | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-${{ matrix.node-version }}-test-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.node-version }}-test-${{ env.cache-name }}- | |
${{ runner.os }}-${{ matrix.node-version }}-test- | |
${{ runner.os }}- | |
- name: Install pnpm | |
run: npm i -g pnpm | |
- name: Install deps | |
run: pnpm i | |
# Runs a set of commands using the runners shell | |
- name: Build and Test | |
run: pnpm test |