bigbluebutton-Github/.github/workflows/ts-code-compilation.yml

28 lines
665 B
YAML
Raw Normal View History

name: Typescript - compile code
on:
push:
pull_request_target:
types:
- opened
- synchronize
permissions:
contents: read
jobs:
ts-code-compilation:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
2023-09-07 04:45:39 +08:00
fetch-depth: 1
- name: Merge branches
uses: ./.github/actions/merge-branches
- name: install meteor
run: curl https://install.meteor.com/ | sh
- name: run meteor npm install
working-directory: bigbluebutton-html5
run: meteor npm install
- name: typescript code compilation
working-directory: bigbluebutton-html5
run: npx tsc