Bump @types/node from 20.11.5 to 20.11.6 in /core #4271
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 | |
on: [ push, pull_request ] | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: [18, 20] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.version }} | |
- name: Install core dependencies | |
run: yarn | |
working-directory: core | |
- name: Build core | |
run: yarn build | |
working-directory: core | |
- name: Run core tests | |
run: yarn test | |
working-directory: core | |
Documentation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install core dependencies | |
run: yarn | |
working-directory: core | |
- name: Build core | |
run: yarn build | |
working-directory: core | |
- name: Install documentation dependencies | |
run: yarn | |
working-directory: tsdoc | |
- name: Build documentation | |
run: yarn build | |
working-directory: tsdoc | |
- name: Run documentation tests | |
run: yarn test | |
working-directory: tsdoc | |
Compiler-Tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: [18, 20] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.version }} | |
- name: Install core dependencies | |
run: yarn | |
working-directory: core | |
- name: Build core | |
run: yarn build | |
working-directory: core | |
- name: Install compiler test dependencies | |
run: yarn | |
working-directory: compiler-tests | |
- name: Run compiler tests | |
run: yarn all | |
working-directory: compiler-tests |