diff --git a/.github/workflows/pipeline_deployment.yml b/.github/workflows/pipeline_deployment.yml index 82f6b29..b3bdff8 100644 --- a/.github/workflows/pipeline_deployment.yml +++ b/.github/workflows/pipeline_deployment.yml @@ -6,13 +6,22 @@ jobs: deployment: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - name: Checkout repository + uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-node@v4 + + - name: Setup Node.js environment + uses: actions/setup-node@v4 with: node-version: "18" + - name: Install dependencies - run: cd ./App && npm install + run: | + cd ./App + npm install + - name: Lint - run: cd ./App && npm run eslint + run: | + cd ./App + npm run eslint diff --git a/VERSION b/VERSION index ed23c54..b8fe367 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v89 \ No newline at end of file +v90 \ No newline at end of file