2023-08-15 04:52:35 +08:00
|
|
|
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
|
2023-08-15 04:52:35 +08:00
|
|
|
- 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
|