Skip to content

Commit

Permalink
Merge pull request #1682 from Emurgo/chore/disabling-tests-till-yoroi…
Browse files Browse the repository at this point in the history
…-lib

chore/removing tests for now
  • Loading branch information
stackchain committed Oct 14, 2021
2 parents fb76a24 + 18cefd7 commit a8cb1fd
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/pr-checks.yml
Expand Up @@ -51,26 +51,26 @@ jobs:
- name: run lint
run: |
yarn lint
test:
if: github.event.review && (github.event.review.state == 'approved' || contains(github.event.review.body, '/check'))
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16.5.0'
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: install
run: |
yarn install
- name: run test
run: |
yarn test
# test:
# if: github.event.review && (github.event.review.state == 'approved' || contains(github.event.review.body, '/check'))
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-node@v1
# with:
# node-version: '16.5.0'
# - name: Cache node modules
# uses: actions/cache@v1
# with:
# path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
# key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
# restore-keys: |
# ${{ runner.os }}-build-${{ env.cache-name }}-
# ${{ runner.os }}-build-
# ${{ runner.os }}-
# - name: install
# run: |
# yarn install
# - name: run test
# run: |
# yarn test

0 comments on commit a8cb1fd

Please sign in to comment.