#15 - updated ts declarations for all files #21
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |