Skip to content

Bump @types/node from 18.7.13 to 20.1.3 #1295

Bump @types/node from 18.7.13 to 20.1.3

Bump @types/node from 18.7.13 to 20.1.3 #1295

Workflow file for this run

name: Build PR
on:
pull_request_target:
types:
- opened
- reopened
- synchronize
branches:
- main
paths-ignore:
- '**/*.md'
permissions:
issues: read
contents: write
pull-requests: write
checks: write
pages: write
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
test:
name: QA
uses: ./.github/workflows/job.test.yaml
secrets:
COVERAGE_COMMENT: ${{ secrets.GISTS_TOKEN }}
build:
name: Build
needs:
- test
uses: ./.github/workflows/job.build.yaml
release:
name: Release
if: startsWith(github.head_ref, 'Release')
needs:
- build
uses: ./.github/workflows/job.release-complete.yaml
deploy:
name: Deploy
if: startsWith(github.head_ref, 'Release')
needs:
- release
uses: ./.github/workflows/job.deploy.gh-pages.yaml