From d478b755a688ad3e01fcf235afcb2e5462a27eeb Mon Sep 17 00:00:00 2001 From: Andrew Goldis Date: Thu, 10 Nov 2022 22:48:49 -0800 Subject: [PATCH 1/3] dummy commit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0f68998..a350b41 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "github-actions-example", - "version": "1.0.0", + "version": "1.0.1", "description": "", "main": "index.js", "scripts": { From a580db843cb0902762739ce543b1984912433e45 Mon Sep 17 00:00:00 2001 From: Andrew Goldis Date: Tue, 31 Jan 2023 23:04:36 -0800 Subject: [PATCH 2/3] add v5 example --- .github/workflows/v5.yml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/v5.yml diff --git a/.github/workflows/v5.yml b/.github/workflows/v5.yml new file mode 100644 index 0000000..6fd6c1e --- /dev/null +++ b/.github/workflows/v5.yml @@ -0,0 +1,38 @@ +name: GH Actions v5 + +on: + pull_request: + types: + - opened + - edited + - synchronize + +jobs: + cypress-tests: + runs-on: ubuntu-20.04 + strategy: + fail-fast: false + matrix: + # run 3 copies of the current job in parallel + containers: [1, 2, 3] + steps: + - name: Checkout + uses: actions/checkout@v3 + + # populate commit message for merge commits + # see ://currents.dev/readme/ci-setup/github-actions + with: + ref: ${{ github.event.pull_request.head.sha }} + + # Install Currents + - name: Install dependencies + run: yarn install --ci + + # Run all Cypress tests + - name: Run Cypress on Currents.dev + uses: cypress-io/github-action@v5 + with: + wait-on: https://en.wikipedia.org + wait-on-timeout: 120 + install: false + command: yarn currents run --record --parallel --browser chrome --key ${{ secrets.CURRENTS_RECORD_KEY }} --ci-build-id "${{ github.repository }}-${{ github.run_id }}-${{ github.run_attempt}}" From 5bd58eb986e5d02fbef62a41acafd46f50ca6b98 Mon Sep 17 00:00:00 2001 From: Andrew Goldis Date: Tue, 20 Jun 2023 15:18:57 -0700 Subject: [PATCH 3/3] chore: add dummy file --- dummy | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 dummy diff --git a/dummy b/dummy new file mode 100644 index 0000000..e69de29