Skip to content

Commit

Permalink
Restore workflow file as existed prior to PR #635 (#647)
Browse files Browse the repository at this point in the history
### Motivation and Context

This restores a change required in PR #635 -- comment out the freeze on
the yarn.lock file during install yarn in the workflow. This is because
the file that needed to be changed in the PR was the yarn.lock file
itself.

### Description

This removes the # that was addin in PR #635 to the workflow file.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Mollie Munoz <momuno@microsoft.com>
  • Loading branch information
3 people committed Nov 21, 2023
1 parent a71a015 commit 07d0f7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/copilot-build-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
#!/usr/bin/env bash
set -e # exit with nonzero exit code if anything fails
echo "Running yarn install, yarn build, & yarn format"
yarn install #--frozen-lockfile # install dependencies and ensure lockfile is unchanged.
yarn install --frozen-lockfile # install dependencies and ensure lockfile is unchanged.
yarn build # run build script
yarn format # run format script
working-directory: webapp

0 comments on commit 07d0f7d

Please sign in to comment.