diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml new file mode 100644 index 0000000..436cea7 --- /dev/null +++ b/.github/workflows/pipeline.yaml @@ -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 +