cache/.github/workflows/workflow.yml

130 lines
3.2 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-10-30 19:48:49 +01:00
push:
branches:
2020-07-15 16:36:12 +02:00
- main
- releases/**
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, 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@v3
2023-11-20 14:30:40 +01:00
- name: Setup Node.js 20.x
uses: actions/setup-node@v3
with:
2023-11-20 14:30:40 +01:00
node-version: 20.x
cache: npm
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
2020-04-08 05:37:50 +02:00
test-save:
2020-02-13 18:38:56 +01:00
strategy:
matrix:
os: [ubuntu-latest, 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@v3
- 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, 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@v3
2020-02-13 18:38:56 +01:00
- 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: ubuntu/squid:latest
2020-02-13 18:38:56 +01:00
ports:
- 3128:3128
env:
https_proxy: http://squid-proxy:3128
steps:
- name: Checkout
uses: actions/checkout@v3
2020-02-13 18:38:56 +01:00
- 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: ubuntu/squid:latest
2020-02-13 18:38:56 +01:00
ports:
- 3128:3128
env:
https_proxy: http://squid-proxy:3128
steps:
- name: Checkout
uses: actions/checkout@v3
2020-02-13 18:38:56 +01:00
- 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