nuevo pipeline añadido
parent
678929b643
commit
38f259c65f
@ -0,0 +1,22 @@
|
|||||||
|
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: 16
|
||||||
|
- name: Instalar dependencias
|
||||||
|
run: npm install
|
||||||
|
- name: Lint
|
||||||
|
run: npm run eslint
|
||||||
|
|
Loading…
Reference in New Issue