Skip to content

Bump typedoc-plugin-mdn-links from 3.2.2 to 3.2.3 #376

Bump typedoc-plugin-mdn-links from 3.2.2 to 3.2.3

Bump typedoc-plugin-mdn-links from 3.2.2 to 3.2.3 #376

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
compat:
name: Check compatibility
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node_version:
- 16
- 18
- 20
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/setup-node@v4.0.2
with:
cache: 'npm'
node-version: ${{ matrix.node_version }}
- run: npm ci --no-fund --no-audit
- name: Run tests
run: npm run test
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/setup-node@v4.0.2
with:
cache: 'npm'
node-version: 20
- run: npm ci --no-fund --no-audit
- name: Run checks
run: npm run check:ci
- name: Collect coverage
run: npm run coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
release:
name: Release
needs:
- check
permissions:
contents: write
id-token: write
pull-requests: write
runs-on: ubuntu-latest
if: github.repository_owner == 'friedemannsommer' && github.ref_name == 'main'
concurrency: '${{ github.workflow }}-${{ github.ref }}'
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/setup-node@v4.0.2
with:
cache: 'npm'
node-version: 20
registry-url: 'https://registry.npmjs.org'
- run: npm ci --no-fund --no-audit
- name: Create release PR or publish
uses: changesets/action@v1.4.7
with:
title: 'ci(changesets): package release'
commit: 'ci(changesets): version package'
publish: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}