cache/.github/workflows/workflow.yml

155 lines
4 KiB
YAML
Raw Normal View History

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:
2020-07-15 16:36:12 +02:00
- main
- releases/**
2019-11-08 02:02:06 +01:00
paths-ignore:
- '**.md'
2019-10-30 19:48:49 +01:00
push:
branches:
2020-07-15 16:36:12 +02:00
- main
- releases/**
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:
strategy:
matrix:
os: [ubuntu-latest, ubuntu-16.04, windows-latest, macOS-latest]
fail-fast: false
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
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
2020-07-16 17:01:23 +02:00
uses: actions/cache@v2
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
- name: Ensure dist/ folder is up-to-date
if: ${{ runner.os == 'Linux' }}
shell: bash
run: |
npm run build
2020-07-16 17:01:23 +02:00
if [ "$(git diff --ignore-space-at-eol | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi
2020-02-13 18:38:56 +01:00
# End to end save and restore
2020-04-08 05:37:50 +02:00
test-save:
2020-02-13 18:38:56 +01:00
strategy:
matrix:
os: [ubuntu-latest, ubuntu-16.04, windows-latest, macOS-latest]
2020-04-08 05:41:38 +02:00
fail-fast: false
2020-02-13 18:38:56 +01:00
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Generate files in working directory
2020-02-13 18:38:56 +01:00
shell: bash
2020-04-08 05:28:05 +02:00
run: __tests__/create-cache-files.sh ${{ runner.os }} test-cache
- name: Generate files outside working directory
shell: bash
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-cache
2020-04-08 05:37:50 +02:00
test-restore:
needs: test-save
2020-02-13 18:38:56 +01:00
strategy:
matrix:
os: [ubuntu-latest, ubuntu-16.04, windows-latest, macOS-latest]
2020-04-08 05:41:38 +02:00
fail-fast: false
2020-02-13 18:38:56 +01:00
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
~/test-cache
- name: Verify cache files in working directory
2020-02-13 18:38:56 +01:00
shell: bash
2020-04-08 05:28:05 +02:00
run: __tests__/verify-cache-files.sh ${{ runner.os }} test-cache
- name: Verify cache files outside working directory
2020-04-08 05:28:05 +02:00
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