Skip to content

Bump the typescript-eslint group with 2 updates #976

Bump the typescript-eslint group with 2 updates

Bump the typescript-eslint group with 2 updates #976

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/[email protected]
- name: Setup Node.js
uses: actions/[email protected]
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/[email protected]
- name: Setup Node.js
uses: actions/[email protected]
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/[email protected]
- name: Setup Node.js
uses: actions/[email protected]
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/[email protected]
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: 16
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build