forked from verdaccio/verdaccio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: migrate e2e test to github actions (verdaccio#2109)
* chore: migrate e2e test to github actions * chore: remove circle ci
- Loading branch information
1 parent
e9a5500
commit ff6b47c
Showing
3 changed files
with
54 additions
and
171 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |