build(deps): bump the npm_and_yarn group across 1 directory with 15 updates #5
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: Package builds (unstable) | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| permissions: | |
| contents: read | |
| actions: write | |
| jobs: | |
| package_builds: | |
| #runs-on: alrest-techarohq | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| fetch-tags: true | |
| fetch-depth: 0 | |
| - name: build essential | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential | |
| - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 | |
| with: | |
| node-version: "24.11.0" | |
| - uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0 | |
| with: | |
| go-version: "stable" | |
| - name: install node deps | |
| run: | | |
| npm ci | |
| - name: Build Packages | |
| run: | | |
| go tool yeet | |
| - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 | |
| with: | |
| name: packages | |
| path: var/* |