Skip to content

Bump typescript from 5.6.3 to 5.7.3 #183

Bump typescript from 5.6.3 to 5.7.3

Bump typescript from 5.6.3 to 5.7.3 #183

Workflow file for this run

name: lint-test
on:
push:
branches:
- main
pull_request:
jobs:
run:
runs-on: "ubuntu-latest"
name: "Run"
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: 1.19
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: 20
cache: npm
- name: npm ci
run: npm ci
- name: Format Check
run: npm run format-check
- name: Verify
run: |
npm run build
# Fail if "npm run build" generated new changes in dist
git update-index --refresh dist/* && git diff-index --quiet HEAD dist
- name: Test
run: npm run test