Skip to content

chore: bump @typescript-eslint/parser from 6.9.0 to 6.9.1 #154

chore: bump @typescript-eslint/parser from 6.9.0 to 6.9.1

chore: bump @typescript-eslint/parser from 6.9.0 to 6.9.1 #154

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
branches: ["*", "!latest"]
push:
branches: [latest, main]
env:
NODE_OPTIONS: --experimental-vm-modules
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [windows, ubuntu, macos]
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Setup Node.js
uses: actions/setup-node@v4.0.0
with:
node-version: latest
- name: Enable Corepack
run: corepack enable
- name: Update Yarn
run: yarn set version stable
- name: Cache deps
uses: actions/cache@v3.3.2
with:
path: .yarn
key: yarn-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: Install deps
run: yarn install
- name: Clean dist
run: yarn clean
- name: Build dist
run: yarn nx build
- name: Check diff
run: git diff --exit-code HEAD
- name: Test lib
run: yarn test
- name: Run bin
run: yarn google-rank --help