1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/.github/disabled/e2e-jest-workflow.yml

122 lines
3.8 KiB
YAML
Raw Normal View History

on:
schedule:
- cron: '0 3 * * 5'
pull_request:
branches:
- '**'
name: 'E2E Jest with verdaccio'
jobs:
yarn:
2020-09-01 21:22:36 +02:00
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
name: '${{ matrix.os }} / yarn:jest example'
2020-08-31 22:21:38 +02:00
runs-on: ${{ matrix.os }}
steps:
2020-09-01 21:22:36 +02:00
- uses: actions/checkout@v2.3.1
2020-09-01 21:22:36 +02:00
- name: 'Use Node.js 10.x'
uses: actions/setup-node@v2.1.1
with:
2020-09-01 21:22:36 +02:00
node-version: 10.x
- name: Install Dependencies
2020-09-01 21:22:36 +02:00
run: yarn install --pure-lockfile
- name: 'Run verdaccio in the background'
run: |
2020-09-01 21:22:36 +02:00
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
yarn init --yes
yarn add jest --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
npm:
2020-09-01 21:22:36 +02:00
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
2020-09-01 21:22:36 +02:00
name: '${{ matrix.os }} / npm:jest example'
runs-on: ${{ matrix.os }}
steps:
2020-09-01 21:22:36 +02:00
- uses: actions/checkout@v2.3.1
2020-09-01 21:22:36 +02:00
- name: 'Use Node.js 10.x'
uses: actions/setup-node@v2.1.1
with:
2020-09-01 21:22:36 +02:00
node-version: 10.x
- name: 'install latest npm'
run: npm i -g npm
- name: Install Dependencies
2020-09-01 21:22:36 +02:00
run: yarn install --pure-lockfile
- name: 'Run verdaccio in the background'
run: |
2020-09-01 21:22:36 +02:00
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
npm init --force
npm install jest --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
pnpm:
2020-09-01 21:22:36 +02:00
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
name: '${{ matrix.os }} / pnpm:jest example'
2020-08-31 22:21:38 +02:00
runs-on: ${{ matrix.os }}
steps:
2020-09-01 21:22:36 +02:00
- uses: actions/checkout@v2.3.1
2020-09-01 21:22:36 +02:00
- name: 'Use Node.js 10.x'
uses: actions/setup-node@v2.1.1
with:
2020-09-01 21:22:36 +02:00
node-version: 10.x
- name: 'install latest pnpm'
run: npm i -g pnpm
- name: Install Dependencies
2020-09-01 21:22:36 +02:00
run: yarn install --pure-lockfile
- name: 'Run verdaccio in the background'
run: |
nohup 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 --force
pnpm install jest --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