Remove unnecessary quotes #2656
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 (Auto) | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| persist-credentials: false | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Prepare extensions | |
| # Don't need to do a full fetch, that would just cause a lot of unnecessary traffic | |
| run: node scripts/prepare-extensions.mjs | |
| - name: Compile | |
| run: npm run webpack:compile | |
| - name: Package | |
| run: npm run electron:package:dir |