Skip to content

Bump typescript from 5.0.4 to 5.1.6 #501

Bump typescript from 5.0.4 to 5.1.6

Bump typescript from 5.0.4 to 5.1.6 #501

Workflow file for this run

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 npm@8.16
- 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 npm@8.16
- 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)"