[TT-437] K8s Test Cluster Stability Improvements #1591
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: Lint | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
pull_request: | |
jobs: | |
lint_format_check: | |
name: Format Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 | |
- name: Install Nix | |
uses: cachix/install-nix-action@29bd9290ef037a3ecbdafe83cbd2185e9dd0fa0a # v20 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Install Cairo | |
uses: ./.github/actions/install-cairo | |
- name: Install | |
run: nix develop -c yarn install --frozen-lockfile | |
# NOTE: Runs outside the nix environment because starknet-devnet still pulls in 0.x cairo which ends up taking precedence. | |
- name: Check Cairo | |
run: make format-cairo-check | |
- name: Check Typescript | |
run: nix develop -c make format-ts-check |