Skip to content

Commit

Permalink
chore: migrate e2e test to github actions (verdaccio#2109)
Browse files Browse the repository at this point in the history
* chore: migrate e2e test to github actions

* chore: remove circle ci
  • Loading branch information
juanpicado authored Feb 26, 2021
1 parent e9a5500 commit ff6b47c
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 171 deletions.
171 changes: 0 additions & 171 deletions .circleci/config.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/ci-e2e-ui.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: E2E UI

on: [pull_request]

jobs:
ci:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node_version: [14]

name: ${{ matrix.os }} / Node ${{ matrix.node_version }}
runs-on: ${{ matrix.os }}

steps:
- uses: actions/[email protected]
- name: Use Node ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
node_version: ${{ matrix.node_version }}
- name: Install
run: yarn install --immutable
- name: Build
run: yarn code:build
- name: Test UI
run: yarn run test:e2e
27 changes: 27 additions & 0 deletions .github/workflows/ci-e2e.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: E2E CLI

on: [pull_request]

jobs:
ci:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node_version: [14]

name: ${{ matrix.os }} / Node ${{ matrix.node_version }}
runs-on: ${{ matrix.os }}

steps:
- uses: actions/[email protected]
- name: Use Node ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
node_version: ${{ matrix.node_version }}
- name: Install
run: yarn install --immutable
- name: Build
run: yarn code:build
- name: Test CLI
run: yarn run test:e2e:cli

0 comments on commit ff6b47c

Please sign in to comment.