Skip to content

🔁 Bump @types/node, prettier, and xdeployer #270

🔁 Bump @types/node, prettier, and xdeployer

🔁 Bump @types/node, prettier, and xdeployer #270

name: 🕵️‍♂️ Test smart contracts
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:
- 16
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Get Yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- name: Restore Yarn cache
uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: Install Yarn project with a clean slate
run: yarn install --prefer-offline --frozen-lockfile
- name: Hardhat tests
run: yarn test
- name: Slither static analyser
uses: crytic/slither-action@v0.3.0
continue-on-error: true
with:
node-version: ${{ matrix.node_version }}