Skip to content

Fix TS style

Fix TS style #22

Workflow file for this run

name: CI
on:
push:
branches: [ 'master' ]
pull_request:
branches: [ 'master' ]
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
if: hashFiles('yarn.lock') != ''
with:
node-version: ${{ matrix.node-version }}
- name: Install Node packages
run: yarn install --pure-lockfile
- name: Run tests
run: yarn test
linters:
name: Linters
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
if: hashFiles('yarn.lock') != ''
with:
cache: yarn
- name: Install Node packages
run: yarn install --pure-lockfile
- name: ESLint
run: yarn lint
if: always()