Bump typescript from 5.2.2 to 5.3.3 #385
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: | |
schedule: | |
- cron: '0 0 1 * *' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: | |
- '16' | |
- '18' | |
- '20' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: npm install | |
- run: npx tsc | |
- name: Smoke Test | |
run: | | |
mkdir smoketest/ | |
node dist/index.js --out-dir=smoketest/ | |
- name: Show results of Smoke Test | |
run: find smoketest/ |