You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
697 B
YAML

name: deployment-pipeline
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: '14'
- name: Instalar dependencias
run: npm install --no-audit --no-fund --no-optional
- name: Lint
run: npm run eslint
- name: Build
run: npm run build
- name: Test
run: npm test
- name: E2E tests
uses: cypress-io/github-action@v2
with:
command: npm run test:e2e
start: npm run start-test
wait-on: http://localhost:5000