Use composite actions to test examples automatically and easily #245
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' ] | |
fail-fast: false | |
name: Node.js ${{ matrix.node }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup and Build | |
uses: ./.github/actions/setup-and-build | |
with: | |
node-version: ${{ matrix.node }} | |
- 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) |