Skip to content

feat: tes integration #26

feat: tes integration

feat: tes integration #26

Workflow file for this run

name: Pull Request Checks
on:
pull_request:
branches: ['master']
jobs:
linters:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i --force
- run: npm run lint
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: E2E run
uses: cypress-io/github-action@v4
with:
build: npm run build
start: npm start
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i --force
- run: npm run test:dev