Skip to content

Commit

Permalink
Temporarily disable running tests in CI
Browse files Browse the repository at this point in the history
This should be reverted when I solve the upgradeability of ChainlinkClient.sol
  • Loading branch information
TomiOhl committed Mar 10, 2023
1 parent c767034 commit 3ac23bc
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions .github/workflows/contract-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,29 +34,29 @@ jobs:
- name: Lint
run: npm run lint

tests:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: "16"
cache: "npm"

- name: Cache node modules
uses: actions/cache@v3
id: cache
with:
path: "**/node_modules"
key: npm-v1-${{ hashFiles('**/package-lock.json') }}
restore-keys: npm-v1-

- name: Install dependencies
run: npm ci
if: steps.cache.outputs.cache-hit != 'true'

- name: Run tests
run: npm test
# tests:
# runs-on: ubuntu-latest

# steps:
# - uses: actions/checkout@v3

# - name: Setup NodeJS
# uses: actions/setup-node@v3
# with:
# node-version: "16"
# cache: "npm"

# - name: Cache node modules
# uses: actions/cache@v3
# id: cache
# with:
# path: "**/node_modules"
# key: npm-v1-${{ hashFiles('**/package-lock.json') }}
# restore-keys: npm-v1-

# - name: Install dependencies
# run: npm ci
# if: steps.cache.outputs.cache-hit != 'true'

# - name: Run tests
# run: npm test

0 comments on commit 3ac23bc

Please sign in to comment.