Skip to content

Commit

Permalink
ci: use cypress image
Browse files Browse the repository at this point in the history
  • Loading branch information
javieri-empathy committed Jul 7, 2021
1 parent 55fe9ba commit 9b8985c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
container: cypress/browsers:node12.18.3-chrome87-ff82
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.SUPPORT_TOKEN }}
- uses: actions/setup-node@v2
with:
node-version: 12
- name: Install lerna and all packages
run: npm ci
- name: Build all packages
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@ on: [workflow_dispatch]
jobs:
prepare-release:
runs-on: ubuntu-latest
container: cypress/browsers:node12.18.3-chrome87-ff82
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.SUPPORT_TOKEN }}
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: 12
- name: Install lerna and all packages
run: npm ci
- name: Build all packages
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@ jobs:
release:
if: github.event.pull_request.merged == true && github.head_ref == 'release'
runs-on: ubuntu-latest
container: cypress/browsers:node12.18.3-chrome87-ff82
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.SUPPORT_TOKEN }}
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: 12
- name: Install lerna and all packages
run: npm ci
- name: Build all packages
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/release-alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@ on: [workflow_dispatch]
jobs:
release-alpha:
runs-on: ubuntu-latest
container: cypress/browsers:node12.18.3-chrome87-ff82
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{ secrets.SUPPORT_TOKEN }}
- uses: actions/setup-node@v2
with:
node-version: 12
- name: Install lerna and all packages
run: npm ci
- name: Build all packages
Expand Down

0 comments on commit 9b8985c

Please sign in to comment.