Skip to content

Commit

Permalink
v90
Browse files Browse the repository at this point in the history
  • Loading branch information
FJrodafo committed Apr 14, 2024
1 parent 4df0a72 commit b89b555
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/pipeline_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v89
v90

0 comments on commit b89b555

Please sign in to comment.