Update Webpack #742
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: TypeScript Build Check | |
on: | |
push: | |
branches: [ master, release* ] | |
pull_request: | |
branches: [ master, release* ] | |
jobs: | |
tsc: | |
name: Run TypeScript build check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3 | |
- name: Setup node environment | |
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 | |
with: | |
node-version: 16 | |
check-latest: true | |
cache: npm | |
- name: Install Node.js dependencies | |
run: npm ci --no-audit | |
- name: Run tsc | |
run: npm run build:check |