2020-06-18 16:01:57 -05:00
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 3 * * 5'
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '**'
|
|
|
|
|
|
|
|
name: 'E2E Gatsby.js CLI with verdaccio'
|
|
|
|
jobs:
|
|
|
|
npm:
|
|
|
|
name: 'npm:gatsby example'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2020-06-24 04:39:48 -05:00
|
|
|
- uses: actions/checkout@v2.3.1
|
2020-06-18 16:01:57 -05:00
|
|
|
|
|
|
|
- name: 'Use Node.js 10.x'
|
2020-07-31 00:55:04 -05:00
|
|
|
uses: actions/setup-node@v2.1.1
|
2020-06-18 16:01:57 -05:00
|
|
|
with:
|
|
|
|
node-version: 10.x
|
|
|
|
- name: 'install latest npm'
|
|
|
|
run: npm i -g npm
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: yarn install --pure-lockfile
|
|
|
|
- name: 'Run verdaccio in the background'
|
|
|
|
run: |
|
|
|
|
nohup node ./scripts/run-verdaccio.js &
|
|
|
|
- name: 'Ping to verdaccio'
|
|
|
|
run: |
|
|
|
|
npm ping --registry http://localhost:4873
|
|
|
|
- name: 'Running the integration test'
|
|
|
|
run: |
|
|
|
|
source scripts/e2e-setup-ci.sh
|
|
|
|
echo "registry=http://localhost:4873" > ~/.npmrc
|
|
|
|
npm config set loglevel="http"
|
|
|
|
npm config set fetch-retries="5"
|
|
|
|
npm config set fetch-retry-factor="50"
|
|
|
|
npm config set fetch-retry-mintimeout="20000"
|
|
|
|
npm config set fetch-retry-maxtimeout="80000"
|
|
|
|
npm i -g gatsby
|
|
|
|
gatsby new my-gatsby --verbose
|
|
|
|
cd my-gatsby
|
|
|
|
npm run build
|