WIP: Flatpak binary can now launch games on Steam Deck #1845
This file contains hidden or 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: [push] | |
| jobs: | |
| build: | |
| name: Test on ${{ matrix.platform }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - kind: linux | |
| os: ubuntu-latest | |
| platform: linux | |
| - kind: windows | |
| os: windows-latest | |
| platform: win | |
| # Macos-11 is deprecated, macos-12 would require package updates, see PR #1409 | |
| # - kind: mac | |
| # os: macos-11 | |
| # platform: osx | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| # The talk on the street says this might be a good version for building. | |
| node-version: 20.19.0 | |
| cache: yarn | |
| - name: Install Yarn dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Prepare Quasar files | |
| run: npx @quasar/cli prepare | |
| - name: Run tests | |
| run: > | |
| node test/folder-structure-testing/populator.mjs && | |
| yarn run test |