@W-14329763@: Removed references to SFDX. #83
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: validate-pr | |
on: | |
pull_request: | |
types: [edited, opened, reopened, synchronize] | |
jobs: | |
# VALIDATE PR TITLE FORMAT | |
verify_pr_title: | |
runs-on: ubuntu-latest | |
name: Verify that PR title contains well-formed GUS work item tag. | |
steps: | |
# Private actions must check out repo first. | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# TODO: Implement this action | |
- name: Verify PR Title | |
run: echo 'Nope not yet' | |
# RUN TESTS | |
# Step 1: Build the scanner tarball so it can be installed locally. | |
build_scanner_tarball: | |
name: 'Build scanner tarball' | |
uses: ./.github/workflows/build-scanner-tarball.yml | |
with: | |
target-branch: 'dev' | |
# Step 2: Actually run the tests. | |
run_tests: | |
name: 'Run unit tests' | |
needs: build_scanner_tarball | |
uses: ./.github/workflows/run-tests.yml | |
with: | |
# We want to validate the extension against whatever version of the scanner we | |
# *plan* to publish, not what's *already* published. | |
use-scanner-tarball: true | |
# BUILD A VSIX ARTIFACT | |
# Additionally, build a VSIX that can be downloaded by the user if needed. | |
create-vsix-artifact: | |
name: 'Upload VSIX as artifact' | |
uses: ./.github/workflows/create-vsix-artifact.yml |