Bump typescript from 5.6.3 to 5.7.3 #183
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: 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 |