Skip to content

Bump semver from 5.7.1 to 5.7.2 #369

Bump semver from 5.7.1 to 5.7.2

Bump semver from 5.7.1 to 5.7.2 #369

Workflow file for this run

name: Lint, Check Types, Cypress Test
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 'latest'
# Use the official setup-node action (sets up Node.js):
# https://github.com/actions/setup-node
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- run: pnpm eslint . --max-warnings 0
- run: pnpm tsc
# Use Cypress GitHub action to run tests
# https://github.com/cypress-io/github-action
- name: Cypress run
uses: cypress-io/github-action@v5
with:
build: pnpm build
start: pnpm start