Bump golang.org/x/net from 0.19.0 to 0.23.0 in /chain #909
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: "Marketplace frontend build" | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
paths: | |
- 'frontend/marketplace/**' | |
jobs: | |
build: | |
name: Build Marketplace Frontend | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.10.0' | |
- uses: earthly/actions-setup@v1 | |
with: | |
version: 0.6.30 | |
- run: npm ci && npm run build | |
working-directory: ./frontend/marketplace |