Skip to content

Commit

Permalink
馃挌 improve Github Actions naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Yago committed Aug 10, 2020
1 parent 01823f1 commit 77df124
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
name: Unit and e2e tests
name: Tests suit

on: [pull_request]

jobs:
init:
E2E:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- name: Checkout
uses: actions/checkout@v1
- name: Setup Node 14.x
uses: actions/setup-node@v1
with:
node-version: '14.x'
- run: yarn install && yarn build
- name: Build project
run: yarn install && yarn build
# Comment the following line if your project is in your root folder
working-directory: playground
- uses: cypress-io/github-action@v2
- name: Cypress tests
uses: cypress-io/github-action@v2
with:
start: yarn start
wait-on: http://localhost:3000
Expand Down

0 comments on commit 77df124

Please sign in to comment.