131 lines
3.7 KiB
YAML
131 lines
3.7 KiB
YAML
name: Node CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- '*'
|
|
|
|
paths-ignore:
|
|
- 'website/**'
|
|
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
|
|
paths-ignore:
|
|
- 'website/**'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [macos-latest, windows-latest, ubuntu-latest]
|
|
node-version: [12.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- uses: actions/cache@v1
|
|
with:
|
|
path: ~/.cache/yarn
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles(format('{0}{1}', github.workspace, '/yarn.lock')) }}
|
|
restore-keys: |
|
|
${{ runner.os }}-yarn-
|
|
- name: npm install, unit test and build
|
|
run: |
|
|
node --version
|
|
npm --version
|
|
yarn --version
|
|
yarn --frozen-lockfile
|
|
yarn bootstrap
|
|
yarn test:ci
|
|
yarn build:demo
|
|
env:
|
|
CI: true
|
|
NODE_OPTIONS: --max-old-space-size=4096
|
|
- uses: actions/upload-artifact@master
|
|
with:
|
|
name: dev-test-website-${{ runner.os }}-node-${{ matrix.node-version }}
|
|
path: dev-test
|
|
|
|
# non forked workflow (has access to build secrets)
|
|
e2e-with-cypress-record:
|
|
needs: build
|
|
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false)
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
machine: [1, 2, 3, 4, 5, 6, 7, 8]
|
|
node-version: [12.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- uses: actions/cache@v1
|
|
with:
|
|
path: ~/.cache/yarn
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles(format('{0}{1}', github.workspace, '/yarn.lock')) }}
|
|
restore-keys: |
|
|
${{ runner.os }}-yarn-
|
|
- uses: actions/download-artifact@master
|
|
with:
|
|
name: dev-test-website-${{ runner.os }}-node-${{ matrix.node-version }}
|
|
path: dev-test
|
|
- name: npm install and e2e test
|
|
run: |
|
|
node --version
|
|
npm --version
|
|
yarn --version
|
|
yarn --frozen-lockfile
|
|
yarn test:e2e:run-ci
|
|
env:
|
|
CI: true
|
|
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
|
|
NODE_OPTIONS: --max-old-space-size=4096
|
|
|
|
# forked workflow (no access to build secrets)
|
|
e2e-no-cypress-record:
|
|
needs: build
|
|
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == true
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [12.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- uses: actions/cache@v1
|
|
with:
|
|
path: ~/.cache/yarn
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles(format('{0}{1}', github.workspace, '/yarn.lock')) }}
|
|
restore-keys: |
|
|
${{ runner.os }}-yarn-
|
|
- uses: actions/download-artifact@master
|
|
with:
|
|
name: dev-test-website-${{ runner.os }}-node-${{ matrix.node-version }}
|
|
path: dev-test
|
|
- name: npm install and e2e test
|
|
run: |
|
|
node --version
|
|
npm --version
|
|
yarn --version
|
|
yarn --frozen-lockfile
|
|
yarn test:e2e:run
|
|
env:
|
|
CI: true
|
|
NODE_OPTIONS: --max-old-space-size=4096
|