mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
87d4912066
for x branches
234 lines
8.8 KiB
YAML
234 lines
8.8 KiB
YAML
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
yarn:
|
|
name: 'yarn:jest example'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
|
|
|
|
- name: 'Use Node.js'
|
|
uses: actions/setup-node@7c12f8017d5436eb855f1ed4399f037a36fbd9e8 # v2.5.2
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
- 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
|
|
yarn init --yes
|
|
yarn add jest@29.5.0 --registry http://localhost:4873
|
|
|
|
echo "it('should pass', () => { expect(true).toBeTruthy(); });" | tee pass.test.js
|
|
yarn jest pass.test.js
|
|
|
|
yarn add left-pad --registry http://localhost:4873 --verbose
|
|
echo "const leftPad = require('left-pad'); it('should resolve a module', () => { expect(typeof leftPad).toBe('function');});" | tee module.test.js
|
|
yarn jest module.test.js
|
|
yarn2:
|
|
name: 'yarn2:jest example'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
|
|
|
|
- name: 'Use Node.js'
|
|
uses: actions/setup-node@7c12f8017d5436eb855f1ed4399f037a36fbd9e8 # v2.5.2
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
- 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
|
|
yarn init --yes
|
|
yarn set version berry
|
|
yarn config set npmRegistryServer "http://localhost:4873"
|
|
yarn config set unsafeHttpWhitelist --json '["localhost"]'
|
|
yarn add jest@29.5.0
|
|
|
|
echo "it('should pass', () => { expect(true).toBeTruthy(); });" | tee pass.test.js
|
|
yarn jest pass.test.js
|
|
|
|
yarn add left-pad
|
|
echo "const leftPad = require('left-pad'); it('should resolve a module', () => { expect(typeof leftPad).toBe('function');});" | tee module.test.js
|
|
yarn jest module.test.js
|
|
npm8:
|
|
name: 'npm8:jest example'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
|
|
|
|
- name: 'Use Node.js'
|
|
uses: actions/setup-node@7c12f8017d5436eb855f1ed4399f037a36fbd9e8 # v2.5.2
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
- name: 'install latest npm'
|
|
run: npm i -g npm@next-8
|
|
- 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
|
|
npm init --yes
|
|
npm install jest@29.5.0 --registry http://localhost:4873 --loglevel info
|
|
|
|
echo "it('should pass', () => { expect(true).toBeTruthy(); });" | tee pass.test.js
|
|
yarn jest pass.test.js
|
|
|
|
yarn add left-pad --registry http://localhost:4873 --verbose
|
|
echo "const leftPad = require('left-pad'); it('should resolve a module', () => { expect(typeof leftPad).toBe('function');});" | tee module.test.js
|
|
yarn jest module.test.js
|
|
npm9:
|
|
name: 'npm9:jest example'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
|
|
|
|
- name: 'Use Node.js'
|
|
uses: actions/setup-node@7c12f8017d5436eb855f1ed4399f037a36fbd9e8 # v2.5.2
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
- name: 'install latest npm 9'
|
|
run: npm i -g npm@next-9
|
|
- 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
|
|
npm init --yes
|
|
npm install jest@29.4.2 --registry http://localhost:4873 --loglevel info
|
|
|
|
echo "it('should pass', () => { expect(true).toBeTruthy(); });" | tee pass.test.js
|
|
yarn jest pass.test.js
|
|
|
|
yarn add left-pad --registry http://localhost:4873 --verbose
|
|
echo "const leftPad = require('left-pad'); it('should resolve a module', () => { expect(typeof leftPad).toBe('function');});" | tee module.test.js
|
|
yarn jest module.test.js
|
|
npm10:
|
|
name: 'npm10:jest example'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
|
|
|
|
- name: 'Use Node.js'
|
|
uses: actions/setup-node@7c12f8017d5436eb855f1ed4399f037a36fbd9e8 # v2.5.2
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
- name: 'install latest npm 10'
|
|
run: npm i -g npm@next-10
|
|
- 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
|
|
npm init --yes
|
|
npm install jest@29.4.2 --registry http://localhost:4873 --loglevel info
|
|
|
|
echo "it('should pass', () => { expect(true).toBeTruthy(); });" | tee pass.test.js
|
|
yarn jest pass.test.js
|
|
|
|
yarn add left-pad --registry http://localhost:4873 --verbose
|
|
echo "const leftPad = require('left-pad'); it('should resolve a module', () => { expect(typeof leftPad).toBe('function');});" | tee module.test.js
|
|
yarn jest module.test.js
|
|
pnpm8:
|
|
name: 'pnpm8:jest example'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
|
|
|
|
- name: 'Use Node.js'
|
|
uses: actions/setup-node@7c12f8017d5436eb855f1ed4399f037a36fbd9e8 # v2.5.2
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
- name: 'install latest pnpm'
|
|
run: npm i -g pnpm@latest-8
|
|
- name: Install Dependencies
|
|
run: yarn install
|
|
- name: 'Run verdaccio in the background'
|
|
run: |
|
|
nohup yarn node ./scripts/run-verdaccio.js &
|
|
- name: 'Ping to verdaccio'
|
|
run: |
|
|
pnpm ping --registry http://localhost:4873
|
|
- name: 'Running the integration test'
|
|
run: |
|
|
source scripts/e2e-setup-ci.sh
|
|
pnpm init
|
|
pnpm install jest@29.5.0 --registry http://localhost:4873 --loglevel info
|
|
|
|
echo "it('should pass', () => { expect(true).toBeTruthy(); });" | tee pass.test.js
|
|
yarn jest pass.test.js
|
|
|
|
yarn add left-pad --registry http://localhost:4873 --verbose
|
|
echo "const leftPad = require('left-pad'); it('should resolve a module', () => { expect(typeof leftPad).toBe('function');});" | tee module.test.js
|
|
yarn jest module.test.js
|
|
pnpm9:
|
|
name: 'pnpm:9:jest example'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
|
|
|
|
- name: 'Use Node.js'
|
|
uses: actions/setup-node@7c12f8017d5436eb855f1ed4399f037a36fbd9e8 # v2.5.2
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
- name: 'install latest pnpm'
|
|
run: npm i -g pnpm@latest-9
|
|
- name: Install Dependencies
|
|
run: yarn install
|
|
- name: 'Run verdaccio in the background'
|
|
run: |
|
|
yarn node ./scripts/run-verdaccio.js &
|
|
- name: 'Ping to verdaccio'
|
|
run: |
|
|
pnpm ping --registry http://localhost:4873
|
|
- name: 'Running the integration test'
|
|
run: |
|
|
source scripts/e2e-setup-ci.sh
|
|
pnpm init
|
|
pnpm install jest@29.5.0 --registry http://localhost:4873 --loglevel info
|
|
|
|
echo "it('should pass', () => { expect(true).toBeTruthy(); });" | tee pass.test.js
|
|
yarn jest pass.test.js
|
|
|
|
yarn add left-pad --registry http://localhost:4873 --verbose
|
|
echo "const leftPad = require('left-pad'); it('should resolve a module', () => { expect(typeof leftPad).toBe('function');});" | tee module.test.js
|
|
yarn jest module.test.js
|