chore(deps): bump the npm_and_yarn group across 3 directories with 25 updates #2516
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: "Definitely Type build" | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths-ignore: | |
- 'data/**' | |
- 'ui/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ lts/iron ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: run definitely typed build | |
run: | | |
npm ci | |
npm run ts-patch:install | |
npm run build | |
npm run build:transformer:definitelyTyped | |
env: | |
CI: true | |