Get dependencies #1
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: Get dependencies | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| build-linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| persist-credentials: false | |
| - name: Install strip-nondeterminism | |
| run: sudo apt-get install strip-nondeterminism | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Clean cache | |
| run: npm cache clean --force --loglevel=info | |
| - name: Install dependencies | |
| run: npm install --force --loglevel=info | |
| - name: Upload artifacts to GitHub Actions | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: linux | |
| path: ./* |