mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-23 18:17:38 +00:00
* Experiment with action to run IA tests * Split out IA tests * Don't try on push * Also on push * Make an error an error * Introduce failing test * Return an error exit code * Remove failing test
23 lines
455 B
YAML
23 lines
455 B
YAML
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
|