From 2d27d6aa3b20e90cea026be221e983c41b4a722d Mon Sep 17 00:00:00 2001 From: Luisfc68 Date: Fri, 20 Dec 2024 17:52:45 -0300 Subject: [PATCH] ci: remove truffle from pipeline --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e423b9..d927dae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,19 +26,19 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 - - name: Use Node.js 19.6.0 + - name: Use Node.js 20.15.1 uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 with: - node-version: "19.6.0" - - - name: Install truffle - run: npm install -g truffle + node-version: "20.15.1" - name: NPM Login - run: npm config set //npm.pkg.github.com/:_authToken ${{ secrets.GITHUB_TOKEN }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: npm config set //npm.pkg.github.com/:_authToken $GITHUB_TOKEN - name: Install dependencies run: npm ci + - name: Lint contracts run: npm run lint:sol