This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
Update nodejs 20 since replacing ts-node-test with tsx #670
Workflow file for this run
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: CI - Official | |
on: | |
push: | |
branches: [main] | |
paths: | |
- '.github/workflows/ci-official.yml' | |
- 'package.json' | |
- 'package-lock.json' | |
- 'default.json' | |
- 'renovate.json' | |
- 'self.json' | |
- '.tool-versions' | |
pull_request: | |
paths: | |
- '.github/workflows/ci-official.yml' | |
- 'package.json' | |
- 'package-lock.json' | |
- 'default.json' | |
- 'renovate.json' | |
- 'self.json' | |
- '.tool-versions' | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.node-version' | |
cache: npm | |
- run: npm ci | |
# renovate.json will always tested by the CLI | |
- run: RENOVATE_CONFIG_FILE=default.json npx renovate-config-validator | |
- run: RENOVATE_CONFIG_FILE=self.json npx renovate-config-validator |