Skip to content

Bump eslint-import-resolver-typescript from 4.3.5 to 4.4.2 #1455

Bump eslint-import-resolver-typescript from 4.3.5 to 4.4.2

Bump eslint-import-resolver-typescript from 4.3.5 to 4.4.2 #1455

name: Continuous Integration
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
schedule:
# 00:00 on Saturdays
- cron: '0 0 * * SAT'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache yarn cache
uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Test on Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn --frozen-lockfile
- run: npx prettier --check .
- run: yarn run lint
- run: yarn run build
- run: yarn test
- name: Upload test coverage report to Codecov
uses: codecov/[email protected]
with:
fail_ci_if_error: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}