diff --git a/.github/workflows/ia-integration-tests.yml b/.github/workflows/ia-integration-tests.yml new file mode 100644 index 00000000..96c90108 --- /dev/null +++ b/.github/workflows/ia-integration-tests.yml @@ -0,0 +1,23 @@ +name: "Internet Archvie Integration Tests" + +on: + push + schedule: + - cron: '0 8 * * *' + +jobs: + ia-tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Use Node.js + uses: actions/setup-node@v1 + with: + node-version: 12.x + - name: Run Tests + run: | + cd experiments/archive-org-integration-tests + yarn + node ./index.js + env: + CI: true diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 42de44a3..dabf4ea9 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -22,18 +22,3 @@ jobs: yarn travis-tests env: CI: true - ia-tests: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - name: Use Node.js - uses: actions/setup-node@v1 - with: - node-version: 12.x - - name: Run Tests - run: | - cd experiments/archive-org-integration-tests - yarn - node ./index.js - env: - CI: true