Bump the client-dependencies group in /faucet-client with 6 updates #229
Workflow file for this run
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: Development Build | |
on: | |
pull_request: | |
branches: [ "master" ] | |
workflow_dispatch: | |
jobs: | |
run_tests: | |
name: Run Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 21 | |
- run: npm install | |
- run: npm run test | |
build_binaries: | |
name: Build Binaries | |
needs: [run_tests] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 21 | |
- run: npm install -g pkg | |
- run: npm install | |
- run: npm run bundle | |
- run: pkg --compress Brotli . | |
- name: Upload powfaucet.js artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ./bundle/powfaucet.cjs | |
name: powfaucet.js | |
- name: Upload linux binary artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ./bin/pow-faucet-server-linux | |
name: powfaucet-server-linux | |
- name: Upload windows binary artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ./bin/pow-faucet-server-win.exe | |
name: powfaucet-server-win.exe |