From 2ba8724f84bc6bbdff2d519e48a7be176edbe009 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Thu, 2 Jan 2020 15:13:19 -0800 Subject: [PATCH] Experiment with action to run IA tests --- .github/workflows/nodejs.yml | 15 +++++++++++++++ .../archive-org-integration-tests/index.js | 0 2 files changed, 15 insertions(+) mode change 100644 => 100755 experiments/archive-org-integration-tests/index.js diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index dabf4ea9..42de44a3 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -22,3 +22,18 @@ 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 diff --git a/experiments/archive-org-integration-tests/index.js b/experiments/archive-org-integration-tests/index.js old mode 100644 new mode 100755