fix: fix ci by starting dev-ticker #465
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] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16.x" | |
- name: Use rust | |
run: | | |
rustup install 1.69.0 | |
rustup default 1.69.0 | |
rustup component add clippy | |
rustup component add rustfmt | |
- name: Toolchain info | |
run: | | |
node --version | |
rustc --version | |
cargo clippy --version | |
- name: setup-env | |
run: | | |
echo ZKSYNC_HOME=$(pwd) >> $GITHUB_ENV | |
echo $(pwd)/bin >> $GITHUB_PATH | |
- name: lints | |
run: | | |
zk | |
zk fmt --check | |
zk lint --check | |