diff --git a/.github/workflows/contract-test.yml b/.github/workflows/contract-test.yml index b7ee418..51ecbbf 100644 --- a/.github/workflows/contract-test.yml +++ b/.github/workflows/contract-test.yml @@ -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