Merge pull request #422 from ps2alerts/dependabot/github_actions/acti… #2035
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 Compile | |
on: | |
push: | |
pull_request: | |
jobs: | |
typescript-compile: | |
name: Typescript Compile | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Install node v16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install modules | |
run: yarn install | |
- name: Build application | |
run: yarn run build |