chore(release): 2.0.1 #150
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Main Workflow | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
validate: | |
name: Validate Using Latest Node LTS | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- name: Run Lint and Typecheck | |
uses: cypress-io/github-action@v5 | |
with: | |
runTests: false | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm lint | |
- run: pnpm typecheck | |
- run: pnpm test -- --coverage | |
- run: npx codecov -t ${{ secrets.CODECOV_TOKEN }} | |
build: | |
name: Build website | |
runs-on: ubuntu-latest | |
container: | |
image: cypress/browsers:node18.6.0-chrome105-ff104 | |
options: --user 1001 | |
needs: validate | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- name: Build website | |
uses: cypress-io/github-action@v5 | |
with: | |
runTests: false | |
- run: pnpm build | |
- name: Save build folder | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build | |
if-no-files-found: error | |
path: .next | |
test-chrome: | |
name: Test Chrome | |
runs-on: ubuntu-latest | |
container: | |
image: cypress/browsers:node18.6.0-chrome105-ff104 | |
options: --user 1001 | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- name: Download the build folders | |
uses: actions/download-artifact@v3 | |
with: | |
name: build | |
path: .next | |
- name: "UI Tests - Chrome" | |
uses: cypress-io/github-action@v5 | |
with: | |
start: pnpm start | |
wait-on: "http://localhost:3000" | |
wait-on-timeout: 120 | |
browser: chrome | |
record: true | |
parallel: true | |
group: "UI - Chrome" | |
spec: cypress/e2e/* | |
env: | |
CYPRESS_PROJECT_ID: ${{ secrets.CYPRESS_PROJECT_ID }} | |
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COMMIT_INFO_MESSAGE: ${{ github.event.pull_request.title }} | |
COMMIT_INFO_SHA: ${{ github.event.pull_request.head.sha }} | |
- name: Upload Screenshots | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: chrome-cypress-screenshots | |
path: cypress/screenshots | |
- name: Upload Videos | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: chrome-cypress-videos | |
path: cypress/videos | |
test-firefox: | |
name: Test Firefox | |
runs-on: ubuntu-latest | |
container: | |
image: cypress/browsers:node18.6.0-chrome105-ff104 | |
options: --user 1001 | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- name: Download the build folders | |
uses: actions/download-artifact@v3 | |
with: | |
name: build | |
path: .next | |
- name: "UI Tests - Firefox" | |
uses: cypress-io/github-action@v5 | |
with: | |
start: pnpm start | |
wait-on: "http://localhost:3000" | |
wait-on-timeout: 120 | |
browser: firefox | |
record: true | |
parallel: true | |
group: "UI - Firefox" | |
spec: cypress/e2e/* | |
env: | |
CYPRESS_PROJECT_ID: ${{ secrets.CYPRESS_PROJECT_ID }} | |
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COMMIT_INFO_MESSAGE: ${{ github.event.pull_request.title }} | |
COMMIT_INFO_SHA: ${{ github.event.pull_request.head.sha }} | |
- name: Upload Screenshots | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: firefox-cypress-screenshots | |
path: cypress/screenshots | |
- name: Upload Videos | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: firefox-cypress-videos | |
path: cypress/videos |