[DEP_DEV] (deps-dev): Bump typedoc from 0.23.28 to 0.27.1 #397
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: Test | |
on: | |
workflow_dispatch: | |
pull_request: | |
permissions: {} | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [18.x, 20.x] | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
exclude: | |
- node-version: 20.x | |
os: ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
name: Node ${{ matrix.node-version }}, ${{ matrix.os }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Check if changed | |
uses: MarceloPrado/[email protected] | |
id: changed | |
with: | |
paths: . :^**.txt :^**.md :^**.xlsx :^**.d.ts :^**.yml .github/workflows/test.yml | |
- name: Use Node ${{ matrix.node-version }} | |
if: steps.changed.outputs.changed == 'true' | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
- name: Install Dependencies | |
if: steps.changed.outputs.changed == 'true' | |
uses: nick-fields/retry@v2 | |
with: | |
timeout_minutes: 2 | |
max_attempts: 3 | |
command: npm ci | |
- name: Test | |
if: steps.changed.outputs.changed == 'true' | |
run: node scripts/test --github-action |