Skip to content

Update note and warning GitHub markdown syntax #171

Update note and warning GitHub markdown syntax

Update note and warning GitHub markdown syntax #171

Workflow file for this run

name: Check
on:
push:
branches:
- "main"
pull_request:
jobs:
main:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "${{ matrix.node-version }}"
- id: cache-node_modules
uses: actions/cache@v3
with:
path: node_modules
key: node_modules-${{ matrix.os }}-${{ matrix.node-version }}-${{ hashFiles('package.json', 'package-lock.json') }}
- if: steps.cache-node_modules.outputs.cache-hit != 'true'
run: npm ci --no-audit
- run: npx eslint --report-unused-disable-directives .
- run: npx prettier --check .
- run: npx tsc --noEmit
- run: npx tsc --noEmit --project tests
- run: npx tsc --noEmit --project examples
- run: npm run build