Skip to content

Merge pull request #18 from andersonfpcorrea/andersonfpcorrea-patch-1 #119

Merge pull request #18 from andersonfpcorrea/andersonfpcorrea-patch-1

Merge pull request #18 from andersonfpcorrea/andersonfpcorrea-patch-1 #119

Workflow file for this run

name: 'Main'
on: push
jobs:
lint-and-test:
name: Run linters and then tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint:scripts
- name: Run Tests
run: npm test
env:
CI: true
- name: Cypress.io
uses: cypress-io/[email protected]
with:
start: npm run dev
wait-on: 'http://localhost:5173'
browser: chrome