1
0
Fork 0
mirror of https://github.com/actions/cache.git synced 2024-09-19 17:36:43 +00:00
cache/.github/workflows/workflow.yml

130 lines
3.2 KiB
YAML
Raw Normal View History

name: Tests
2019-11-12 21:48:02 +00:00
2019-10-30 18:48:49 +00:00
on:
pull_request:
2019-11-08 01:02:06 +00:00
branches:
2020-07-15 14:36:12 +00:00
- main
- releases/**
2019-10-30 18:48:49 +00:00
push:
branches:
2020-07-15 14:36:12 +00:00
- main
- releases/**
2019-10-30 18:48:49 +00:00
jobs:
2020-02-13 17:38:56 +00: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 18:48:49 +00:00
steps:
2020-02-13 17:38:56 +00:00
- name: Checkout
uses: actions/checkout@v3
2023-11-20 13:30:40 +00:00
- name: Setup Node.js 20.x
uses: actions/setup-node@v3
with:
2023-11-20 13:30:40 +00:00
node-version: 20.x
cache: npm
2019-10-30 18:48:49 +00:00
- run: npm ci
- name: Prettier Format Check
run: npm run format-check
2019-11-12 21:48:02 +00:00
- name: ESLint Check
run: npm run lint
2019-10-30 18:48:49 +00:00
- name: Build & Test
run: npm run test
2020-02-13 17:38:56 +00:00
# End to end save and restore
2020-04-08 03:37:50 +00:00
test-save:
2020-02-13 17:38:56 +00:00
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
2020-04-08 03:41:38 +00:00
fail-fast: false
2020-02-13 17:38:56 +00:00
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Generate files in working directory
2020-02-13 17:38:56 +00:00
shell: bash
2020-04-08 03:28:05 +00: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 17:38:56 +00:00
- name: Save cache
uses: ./
with:
key: test-${{ runner.os }}-${{ github.run_id }}
path: |
test-cache
~/test-cache
2020-04-08 03:37:50 +00:00
test-restore:
needs: test-save
2020-02-13 17:38:56 +00:00
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
2020-04-08 03:41:38 +00:00
fail-fast: false
2020-02-13 17:38:56 +00:00
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
2020-02-13 17:38:56 +00: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 17:38:56 +00:00
shell: bash
2020-04-08 03:28:05 +00:00
run: __tests__/verify-cache-files.sh ${{ runner.os }} test-cache
- name: Verify cache files outside working directory
2020-04-08 03:28:05 +00:00
shell: bash
run: __tests__/verify-cache-files.sh ${{ runner.os }} ~/test-cache
2020-02-13 17:38:56 +00: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 17:38:56 +00:00
ports:
- 3128:3128
env:
https_proxy: http://squid-proxy:3128
steps:
- name: Checkout
uses: actions/checkout@v3
2020-02-13 17:38:56 +00:00
- name: Generate files
2020-04-08 03:28:05 +00:00
run: __tests__/create-cache-files.sh proxy test-cache
2020-02-13 17:38:56 +00: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 17:38:56 +00:00
ports:
- 3128:3128
env:
https_proxy: http://squid-proxy:3128
steps:
- name: Checkout
uses: actions/checkout@v3
2020-02-13 17:38:56 +00:00
- name: Restore cache
uses: ./
with:
key: test-proxy-${{ github.run_id }}
path: test-cache
- name: Verify cache
2020-04-08 03:28:05 +00:00
run: __tests__/verify-cache-files.sh proxy test-cache