diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index dfd4b4d..06b2997 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -5,14 +5,18 @@ on: [push] jobs: build: runs-on: ubuntu-latest - steps: - name: Checkout code uses: actions/checkout@v2 - name: Setup Node.js uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 18 + - name: "Setup Rust" + uses: ATiltedTree/setup-rust@v1 + with: + rust-version: nightly + components: clippy - name: Download circom run: wget https://github.com/iden3/circom/releases/latest/download/circom-linux-amd64 -O /usr/local/bin/circom - name: Update permission @@ -23,7 +27,7 @@ jobs: run: yarn # - name: Create build folder # run: mkdir build - - name: Run Linters - run: yarn lint + # - name: Run Linters + # run: yarn lint - name: Run tests run: yarn test