Update dependency @types/node to v20.16.12 #3733
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: Test | |
on: | |
push: | |
pull_request: | |
merge_group: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# https://nodejs.org/en/about/releases/ | |
node: [ '18', '20', '20.12.2', '22' ] | |
fail-fast: false | |
name: Node.js ${{ matrix.node }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: actions/setup-java@v3 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
architecture: x64 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'npm' | |
- name: Install Dependency | |
run: npm ci | |
- name: Test generator | |
run: cd generator; mvn package; cd .. | |
- name: Generate code | |
run: | | |
python3 generate-code.py | |
- name: Test Project | |
run: export NODE_OPTIONS=--max-old-space-size=6144; npm test | |
- name: Test building apidocs | |
run: export NODE_OPTIONS=--openssl-legacy-provider; npm run apidocs | |
- name: Test building docs | |
run: export NODE_OPTIONS=--openssl-legacy-provider; npm run docs:build | |
- name: Test building examples (CJS) | |
run: | | |
cd examples/echo-bot-ts-cjs | |
npm run build-sdk | |
npm install | |
npm run build | |
cd - | |
- name: Test building examples (ESM) | |
run: | | |
cd examples/echo-bot-ts-esm | |
npm run build-sdk | |
npm install | |
npm run build | |
cd - | |
- name: publint | |
run: npx publint | |
- name: validate package | |
run: npx @arethetypeswrong/cli $(npm pack) |