Skip to content

Bump @typescript-eslint/parser from 5.59.6 to 5.59.7 #801

Bump @typescript-eslint/parser from 5.59.6 to 5.59.7

Bump @typescript-eslint/parser from 5.59.6 to 5.59.7 #801

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
version: [14, 16, 18]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
- name: Setup Node.js
uses: actions/setup-node@v3.6.0
with:
node-version: ${{ matrix.version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Test
run: npm run test
type-test:
name: Type test
strategy:
fail-fast: false
matrix:
version: [14, 16, 18]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
- name: Setup Node.js
uses: actions/setup-node@v3.6.0
with:
node-version: ${{ matrix.version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Type test
run: npm run type-test
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
- name: Setup Node.js
uses: actions/setup-node@v3.6.0
with:
node-version: 16
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint with ESLint
run: npm run lint:eslint
- name: Lint with Markdownlint
run: npm run lint:markdownlint
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
- name: Setup Node.js
uses: actions/setup-node@v3.6.0
with:
node-version: 16
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build