2019-10-31 15:37:00 +01:00
|
|
|
name: Tests
|
2019-11-12 22:48:02 +01:00
|
|
|
|
2019-10-30 19:48:49 +01:00
|
|
|
on:
|
|
|
|
pull_request:
|
2019-11-08 02:02:06 +01:00
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
2019-10-30 19:48:49 +01:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2019-10-31 22:22:35 +01:00
|
|
|
paths-ignore:
|
2019-11-01 15:22:36 +01:00
|
|
|
- '**.md'
|
2019-10-30 19:48:49 +01:00
|
|
|
|
|
|
|
jobs:
|
2020-02-13 18:38:56 +01:00
|
|
|
# Build and unit test
|
|
|
|
build:
|
2019-10-31 15:37:00 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest, macOS-latest]
|
2020-01-30 02:34:56 +01:00
|
|
|
fail-fast: false
|
2019-10-31 15:37:00 +01:00
|
|
|
runs-on: ${{ matrix.os }}
|
2019-10-30 19:48:49 +01:00
|
|
|
steps:
|
2020-02-13 18:38:56 +01:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup Node.js
|
|
|
|
uses: actions/setup-node@v1
|
2019-10-31 15:37:00 +01:00
|
|
|
with:
|
|
|
|
node-version: '12.x'
|
2020-02-13 18:38:56 +01:00
|
|
|
- name: Determine npm cache directory
|
2019-11-12 23:48:19 +01:00
|
|
|
id: npm-cache
|
|
|
|
run: |
|
|
|
|
echo "::set-output name=dir::$(npm config get cache)"
|
2020-02-13 18:38:56 +01:00
|
|
|
- name: Restore npm cache
|
|
|
|
uses: actions/cache@v1
|
2019-11-12 23:48:19 +01:00
|
|
|
with:
|
|
|
|
path: ${{ steps.npm-cache.outputs.dir }}
|
|
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-node-
|
2019-10-30 19:48:49 +01:00
|
|
|
- run: npm ci
|
|
|
|
- name: Prettier Format Check
|
|
|
|
run: npm run format-check
|
2019-11-12 22:48:02 +01:00
|
|
|
- name: ESLint Check
|
|
|
|
run: npm run lint
|
2019-10-30 19:48:49 +01:00
|
|
|
- name: Build & Test
|
|
|
|
run: npm run test
|
2020-02-13 18:38:56 +01:00
|
|
|
|
|
|
|
# End to end save and restore
|
|
|
|
test-save:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest, macOS-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Generate files
|
|
|
|
shell: bash
|
2020-04-08 05:28:05 +02:00
|
|
|
run: __tests__/create-cache-files.sh ${{ runner.os }} test-cache
|
2020-02-13 18:38:56 +01:00
|
|
|
- name: Save cache
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
key: test-${{ runner.os }}-${{ github.run_id }}
|
|
|
|
path: test-cache
|
|
|
|
test-restore:
|
|
|
|
needs: test-save
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest, macOS-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Restore cache
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
key: test-${{ runner.os }}-${{ github.run_id }}
|
|
|
|
path: test-cache
|
|
|
|
- name: Verify cache
|
|
|
|
shell: bash
|
2020-04-08 05:28:05 +02:00
|
|
|
run: __tests__/verify-cache-files.sh ${{ runner.os }} test-cache
|
|
|
|
|
|
|
|
# End to end save and restore with relative paths
|
|
|
|
test-save:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest, macOS-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Generate files
|
|
|
|
shell: bash
|
|
|
|
run: __tests__/create-cache-files.sh ${{ runner.os }} ~/test-cache
|
|
|
|
- name: Save cache
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
key: test-relative-${{ runner.os }}-${{ github.run_id }}
|
|
|
|
path: ~test-cache
|
|
|
|
test-restore:
|
|
|
|
needs: test-save
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest, macOS-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Restore cache
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
key: test-relative-${{ runner.os }}-${{ github.run_id }}
|
|
|
|
path: test-cache
|
|
|
|
- name: Verify cache
|
|
|
|
shell: bash
|
|
|
|
run: __tests__/verify-cache-files.sh ${{ runner.os }} ~/test-cache
|
2020-02-13 18:38:56 +01:00
|
|
|
|
|
|
|
# End to end with proxy
|
|
|
|
test-proxy-save:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: ubuntu:latest
|
|
|
|
options: --dns 127.0.0.1
|
|
|
|
services:
|
|
|
|
squid-proxy:
|
|
|
|
image: datadog/squid:latest
|
|
|
|
ports:
|
|
|
|
- 3128:3128
|
|
|
|
env:
|
|
|
|
https_proxy: http://squid-proxy:3128
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Generate files
|
2020-04-08 05:28:05 +02:00
|
|
|
run: __tests__/create-cache-files.sh proxy test-cache
|
2020-02-13 18:38:56 +01:00
|
|
|
- name: Save cache
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
key: test-proxy-${{ github.run_id }}
|
|
|
|
path: test-cache
|
|
|
|
test-proxy-restore:
|
|
|
|
needs: test-proxy-save
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: ubuntu:latest
|
|
|
|
options: --dns 127.0.0.1
|
|
|
|
services:
|
|
|
|
squid-proxy:
|
|
|
|
image: datadog/squid:latest
|
|
|
|
ports:
|
|
|
|
- 3128:3128
|
|
|
|
env:
|
|
|
|
https_proxy: http://squid-proxy:3128
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Restore cache
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
key: test-proxy-${{ github.run_id }}
|
|
|
|
path: test-cache
|
|
|
|
- name: Verify cache
|
2020-04-08 05:28:05 +02:00
|
|
|
run: __tests__/verify-cache-files.sh proxy test-cache
|