Skip to content

chore: enable skipLibCheck for TypeScript #1855

chore: enable skipLibCheck for TypeScript

chore: enable skipLibCheck for TypeScript #1855

Workflow file for this run

name: Test
on:
push:
branches: ["main"]
pull_request:
branches: ["**"]
env:
# HACK: Dependabot uses Node.js 16.20.1 and npm 8.19.4, so `engine-strict=true` in `.npmrc` fails Dependabot.
# See https://github.com/ybiquitous/npm-audit-fix-action/network/updates/689567062
npm_config_engine_strict: true
jobs:
unit:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: .node-version
cache: npm
- run: npm --global install npm@latest
- run: npm ci
- run: git diff --exit-code # check dist/
- run: npm test --ignore-scripts
smoke:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./
lint:
uses: ybiquitous/.github/.github/workflows/nodejs-lint-reusable.yml@main