Bump ws from 8.3.0 to 8.17.1 in /example/js-example #1936
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: Run Lint | |
# Lint runs golangci-lint over the entire cronos repository This workflow is | |
# run on every pull request and push to main The `golangci` will pass without | |
# running if no *.{go, mod, sum} files have been changed. | |
on: | |
pull_request: | |
merge_group: | |
push: | |
branches: | |
- main | |
jobs: | |
lint-python: | |
name: Lint python | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v19 | |
with: | |
# pin to nix-2.13 to workaround compability issue of 2.14, | |
# see: https://github.com/cachix/install-nix-action/issues/161 | |
install_url: https://releases.nixos.org/nix/nix-2.13.3/install | |
- uses: cachix/cachix-action@v10 | |
with: | |
name: cronos | |
- run: nix-shell -I nixpkgs=./nix -p test-env --run "make lint-py" | |
lint-nix: | |
name: Lint nix | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v19 | |
with: | |
# pin to nix-2.13 to workaround compability issue of 2.14, | |
# see: https://github.com/cachix/install-nix-action/issues/161 | |
install_url: https://releases.nixos.org/nix/nix-2.13.3/install | |
- run: nix-shell -I nixpkgs=./nix -p nixpkgs-fmt --run "make lint-nix" |