aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2022-08-26 02:12:19 +0200
committerGeckoEidechse <gecko.eidechse+git@pm.me>2022-08-26 02:12:19 +0200
commitd05d05a5a16149f3953266ede5a1b2c3222d6d3e (patch)
tree43175b8ff45efe1ab31cd353d49aecd114428c0e /.github
parent89da1ee698c439a86df70993f9fc002173ba486a (diff)
downloadFlightCore-d05d05a5a16149f3953266ede5a1b2c3222d6d3e.tar.gz
FlightCore-d05d05a5a16149f3953266ede5a1b2c3222d6d3e.zip
Compile TypeScript in CI before tauri build run
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/push-test.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml
index f02a8cb3..8af407e9 100644
--- a/.github/workflows/push-test.yml
+++ b/.github/workflows/push-test.yml
@@ -25,7 +25,10 @@ jobs:
sudo apt-get update
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
- name: install app dependencies and build it
- run: npm install && npm run tauri build
+ run: |
+ npm install
+ bash ./node_modules/.bin/rollup -c
+ npm run tauri build
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}