Skip to content

chore(deps): update typescript-eslint monorepo to ^8.47.0 #458

chore(deps): update typescript-eslint monorepo to ^8.47.0

chore(deps): update typescript-eslint monorepo to ^8.47.0 #458

Workflow file for this run

name: Test
on:
push:
paths-ignore:
- 'docs/**'
- 'README.md'
- 'LICENSE'
- '.editorconfig'
branches:
- main
- master
pull_request:
paths-ignore:
- 'docs/**'
- 'README.md'
- 'LICENSE'
- '.editorconfig'
branches:
- main
- master
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-x64-small
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: 'false'
- name: Set up Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # 6.0.0
with:
node-version: 25.x
package-manager-cache: false
- name: Install modules
run: yarn
- name: Lint code base
run: yarn lint
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-x64-small
node: [20.x, 22.x, 24.x, 25.x]
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: 'false'
- name: Set up Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # 6.0.0
with:
node-version: ${{ matrix.node }}
package-manager-cache: false
- name: Install modules
run: yarn
- name: Run build
run: yarn build
- name: Run tests
run: yarn test