Skip to content

Bump @typescript-eslint/eslint-plugin from 5.60.0 to 5.60.1 #790

Bump @typescript-eslint/eslint-plugin from 5.60.0 to 5.60.1

Bump @typescript-eslint/eslint-plugin from 5.60.0 to 5.60.1 #790

Workflow file for this run

name: 🕵️‍♂️ Test xdeploy
on: [push, pull_request]
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
node_version:
- 18.15 # https://github.com/NomicFoundation/hardhat/issues/3877
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache node modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: Install npm project with a clean slate
run: npm ci --prefer-offline
- name: Run tests
run: npm run test
env:
XDEPLOYER_TEST_ACCOUNT: ${{ secrets.XDEPLOYER_TEST_ACCOUNT }}
ETH_GOERLI_TESTNET_URL: ${{ secrets.ETH_GOERLI_TESTNET_URL }}
ETH_SEPOLIA_TESTNET_URL: ${{ secrets.ETH_SEPOLIA_TESTNET_URL }}