Bump the npm group across 1 directory with 11 updates #407
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: Client Build | |
on: | |
workflow_dispatch: | |
# push: | |
# branches: | |
# - main | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
env: | |
DOCKER_BUILDKIT: 1 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: docker build -o ./artifacts/test-results --target test-result . | |
- name: Publish Test Results | |
uses: actions/[email protected] | |
with: | |
name: TestReport | |
path: ./artifacts/test-results/ | |
# - name: Build | |
# if: github.ref == 'refs/heads/main' | |
# run: docker build -t image . && docker save image -o artifacts\image.tar |