Bump typescript from 5.0.4 to 5.3.3 #538
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 Tests | |
on: | |
- pull_request | |
- push | |
jobs: | |
check-license: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: "^1.18.0" | |
- run: go install github.com/google/addlicense@latest | |
- run: env bash -c 'addlicense --check -c "Google LLC" -l MIT src/**/* bin/* examples/**/*' | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
- "14" | |
- "16" | |
- "18" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
cache-dependency-path: package-lock.json | |
- run: npm i -g [email protected] | |
- run: npm ci | |
- run: npm test | |
- run: npm outdated | |
continue-on-error: true | |
check-package-lock: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
cache: npm | |
cache-dependency-path: package-lock.json | |
- run: npm i -g [email protected] | |
- run: npm install --package-lock-only --ignore-scripts | |
- run: "git diff --exit-code -- package-lock.json || (echo 'Error: package-lock.json is changed during npm install! Please make sure to use npm >= 6.9.0 and commit package-lock.json.' && false)" |