Skip to content

Update pipeline_deployment.yaml #54

Update pipeline_deployment.yaml

Update pipeline_deployment.yaml #54

name: Pipeline
on: [push, pull_request]
jobs:
deployment:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: "18"
- name: Install dependencies
working-directory: App
run: npm install
- name: Lint
working-directory: App
run: npm run eslint