Skip to content

Bump eslint-import-resolver-typescript from 3.5.5 to 3.6.0 #237

Bump eslint-import-resolver-typescript from 3.5.5 to 3.6.0

Bump eslint-import-resolver-typescript from 3.5.5 to 3.6.0 #237

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [16, 18]
steps:
- name: Checkout branch
uses: actions/checkout@v3
# Slightly fragile since it runs on the default node version
# but until setup-node supports corepack (https://github.com/actions/setup-node/issues/531)
# this is our best option
- name: Enable core pack
run: |
corepack enable
pnpm --version
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build
- name: Generate
run: pnpm run generate
- name: Lint
run: pnpm run lint
- name: Test
run: pnpm run test