Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Install dependencies and run end-to-end tests
run: |
./release-packages/code-server*-linux-amd64/bin/code-server &
yarn --frozen-lockfile
yarn --frozen-lockfile --check-files
yarn test:e2e
- name: Upload test artifacts
if: always()
Expand Down
2 changes: 1 addition & 1 deletion ci/steps/fmt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euo pipefail
main() {
cd "$(dirname "$0")/../.."

yarn --frozen-lockfile
yarn --frozen-lockfile --check-files

yarn fmt
}
Expand Down
2 changes: 1 addition & 1 deletion ci/steps/lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euo pipefail
main() {
cd "$(dirname "$0")/../.."

yarn --frozen-lockfile
yarn --frozen-lockfile --check-files

yarn lint
}
Expand Down
2 changes: 1 addition & 1 deletion ci/steps/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euo pipefail
main() {
cd "$(dirname "$0")/../.."

yarn --frozen-lockfile
yarn --frozen-lockfile --check-files
yarn build
yarn build:vscode
yarn release
Expand Down
2 changes: 1 addition & 1 deletion ci/steps/test-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ main() {
cd "$(dirname "$0")/../.."

"./release-packages/code-server*-linux-amd64/bin/code-server" --home "$CODE_SERVER_ADDRESS"/healthz &
yarn --frozen-lockfile
yarn --frozen-lockfile --check-files
yarn test:e2e
}

Expand Down
2 changes: 1 addition & 1 deletion ci/steps/test-unit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euo pipefail
main() {
cd "$(dirname "$0")/../.."

yarn --frozen-lockfile
yarn --frozen-lockfile --check-files

yarn test:unit
}
Expand Down