2023-05-12 11:05:21 +08:00
|
|
|
name: CI
|
2019-11-15 11:14:42 +08:00
|
|
|
|
2023-05-12 11:00:34 +08:00
|
|
|
# Triggers the workflow on push or pull request events but only for the master branch
|
|
|
|
on:
|
|
|
|
push:
|
2023-06-08 17:05:16 +08:00
|
|
|
branches: [main]
|
2023-05-12 11:00:34 +08:00
|
|
|
pull_request:
|
2023-06-08 17:05:16 +08:00
|
|
|
branches: [main]
|
2019-11-15 11:14:42 +08:00
|
|
|
|
|
|
|
jobs:
|
2023-05-12 11:00:34 +08:00
|
|
|
setup:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-05-12 11:11:30 +08:00
|
|
|
node-version: [18.x]
|
2023-05-12 11:00:34 +08:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v2
|
2023-05-17 10:00:35 +08:00
|
|
|
|
2023-05-12 11:00:34 +08:00
|
|
|
- name: cache yarn.lock
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: package-temp-dir
|
|
|
|
key: lock-${{ github.sha }}
|
|
|
|
|
|
|
|
- name: create yarn.lock
|
|
|
|
run: yarn generate-lock-entry
|
|
|
|
|
|
|
|
- name: hack for single file
|
|
|
|
run: |
|
|
|
|
if [ ! -d "package-temp-dir" ]; then
|
|
|
|
mkdir package-temp-dir
|
|
|
|
fi
|
|
|
|
cp yarn.lock package-temp-dir
|
|
|
|
- name: cache node_modules
|
|
|
|
id: node_modules_cache_id
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: node_modules
|
|
|
|
key: node_modules-${{ hashFiles('**/package-temp-dir/yarn.lock') }}
|
|
|
|
|
|
|
|
- name: install
|
|
|
|
if: steps.node_modules_cache_id.outputs.cache-hit != 'true'
|
|
|
|
run: yarn
|
|
|
|
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [setup]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2023-05-17 10:00:35 +08:00
|
|
|
|
2023-05-12 11:00:34 +08:00
|
|
|
- name: Restore cache from yarn.lock
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: package-temp-dir
|
|
|
|
key: lock-${{ github.sha }}
|
|
|
|
|
|
|
|
- name: Restore cache from node_modules
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: node_modules
|
|
|
|
key: node_modules-${{ hashFiles('**/package-temp-dir/yarn.lock') }}
|
2023-05-17 10:00:35 +08:00
|
|
|
|
|
|
|
- name: Run Units Test
|
|
|
|
run: |
|
|
|
|
export NODE_OPTIONS="--max_old_space_size=4096"
|
2023-05-30 14:44:03 +08:00
|
|
|
yarn test
|
2023-05-12 11:00:34 +08:00
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [setup]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Restore cache from yarn.lock
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: package-temp-dir
|
|
|
|
key: lock-${{ github.sha }}
|
|
|
|
|
|
|
|
- name: Restore cache from node_modules
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: node_modules
|
|
|
|
key: node_modules-${{ hashFiles('**/package-temp-dir/yarn.lock') }}
|
|
|
|
|
|
|
|
- name: Run Build
|
2023-05-17 10:00:35 +08:00
|
|
|
run: yarn build
|