mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
7a000bccdb
* fix: update core deps * Update e2e-gatsbyjs-cli-workflow.yml * Update e2e-gatsbyjs-cli-workflow.yml * Update e2e-gatsbyjs-cli-workflow.yml
44 lines
1.3 KiB
YAML
44 lines
1.3 KiB
YAML
on:
|
|
schedule:
|
|
- cron: '0 3 * * 5'
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
|
|
name: 'E2E Gatsby.js CLI with verdaccio'
|
|
jobs:
|
|
npm6:
|
|
name: 'npm6:gatsby example'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
|
|
|
|
- name: 'Use Node.js 18.x'
|
|
uses: actions/setup-node@1f8c6b94b26d0feae1e387ca63ccbdc44d27b561 # tag=v2.5.1
|
|
with:
|
|
node-version: 18.x
|
|
- name: 'install npm 6'
|
|
run: npm i -g npm@latest-6
|
|
- name: Install Dependencies
|
|
run: yarn install
|
|
- name: 'Run verdaccio in the background'
|
|
run: |
|
|
nohup yarn node ./scripts/run-verdaccio.js --config ./scripts/e2e-config.yaml &
|
|
- 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
|
|
loglevel="warn"
|
|
fetch-retries=10
|
|
fetch-retry-factor=2
|
|
fetch-retry-mintimeout=10000
|
|
fetch-retry-maxtimeout=80000" > ~/.npmrc
|
|
npm config list
|
|
npm i -g gatsby@4.24.7
|
|
gatsby new my-gatsby
|
|
cd my-gatsby
|
|
npm run build
|