Skip to content

chore(#57): add support for external links #269

chore(#57): add support for external links

chore(#57): add support for external links #269

Workflow file for this run

name: CI
on:
push:
branches: [ develop, main ]
pull_request:
branches: [ develop, main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn build
- run: yarn lint
- name: Jest tests
run: yarn test:jest --reporters=jest-junit --runInBand
- name: Cypress tests
uses: cypress-io/github-action@v5
with:
command: yarn test:cypress
- name: Codecov
uses: codecov/[email protected]
- uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots
- uses: actions/upload-artifact@v3
if: always()
with:
name: cypress-videos
path: cypress/videos