Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Bump semver from 5.7.1 to 5.7.2 #6

Bump semver from 5.7.1 to 5.7.2

Bump semver from 5.7.1 to 5.7.2 #6

Workflow file for this run

name: CI tests
on:
pull_request:
branches: [main]
jobs:
e2e-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
env:
CI: true
NODE_ENV: test
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Log node version
run: node --version
- uses: actions/checkout@v2
with:
fetch-depth: '0'
- name: Install dependencies
run: yarn install
- name: Lint
run: yarn lint
- name: Run tsc
run: yarn tsc
- name: Run build
run: yarn build
- name: Cypress run
uses: cypress-io/github-action@v2
with:
start: yarn dev:ci
wait-on: 'http://localhost:3000, http://localhost:7007'
project: ./packages/app
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
verify:
env:
NODE_OPTIONS: --max-old-space-size=4096
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Log node version
run: node --version
- uses: actions/checkout@v2
with:
fetch-depth: '0'
- name: Install dependencies
run: yarn install
- name: Lint
run: yarn lint
- name: Run prettier
run: yarn prettier --check .
- name: Run tsc
run: yarn tsc
- name: Run build
run: yarn build
- name: Run test
run: yarn test