Skip to content

Commit

Permalink
test build
Browse files Browse the repository at this point in the history
  • Loading branch information
sudhirverma committed Nov 24, 2021
1 parent 97f158a commit 312cc73
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- uses: actions/checkout@main
with:
fetch-depth: 2
# Set up Node
- name: Use Node 16.x
uses: actions/setup-node@v1
Expand Down
2 changes: 1 addition & 1 deletion build/verify-tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async function verifyTools(): Promise<void> {
}

const fileCheckRegex = /\w*tools.json/;
cp.exec('git diff --name-only main -- .', async (error, stdout) => {
cp.exec('git diff --name-only origin/main -- .', async (error, stdout) => {
if (error) {
throw error;
}
Expand Down

0 comments on commit 312cc73

Please sign in to comment.