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

Bump cypress from 12.17.3 to 13.7.0 #4095

Bump cypress from 12.17.3 to 13.7.0

Bump cypress from 12.17.3 to 13.7.0 #4095

Workflow file for this run

---
name: Test
# yamllint disable-line rule:truthy
on:
workflow_dispatch:
push:
permissions: read-all
jobs:
test_frontend:
name: test frontend
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: Use Node.js (.nvmrc)
uses: actions/setup-node@v3
with:
node-version: "${{ steps.nvm.outputs.NVMRC }}"
- name: Install dependencies
run: npm ci
- name: Test frontend
run: npm run test