ci-scripts: Remove version #318
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: Build on Linux | |
on: [push] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: "npm" | |
cache-dependency-path: "**/package-lock.json" | |
# qt-lib should be built first as it is a dependency for other packages | |
- run: npm run ci:qt-lib | |
- run: npm run compile:qt-lib | |
- run: npm run ci:all | |
- run: npm run compile:all | |
- run: npm run ci-lint:all | |
- run: npm run package:all | |
- name: Upload qt-cpp | |
uses: actions/upload-artifact@v4 | |
with: | |
name: qt-cpp-vsix | |
path: qt-cpp/out/*.vsix | |
- name: Upload qt-qml | |
uses: actions/upload-artifact@v4 | |
with: | |
name: qt-qml-vsix | |
path: qt-qml/out/*.vsix | |
- name: Upload qt-core | |
uses: actions/upload-artifact@v4 | |
with: | |
name: qt-core-vsix | |
path: qt-core/out/*.vsix | |
- name: Upload qt-ui | |
uses: actions/upload-artifact@v4 | |
with: | |
name: qt-ui-vsix | |
path: qt-ui/out/*.vsix |