Skip to content

Commit

Permalink
updating deployment action
Browse files Browse the repository at this point in the history
  • Loading branch information
kakucodes committed Feb 11, 2024
1 parent 150c5d0 commit c47f954
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,19 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Installing Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 18.x

- name: Installing NPM packages
run: npm ci
run: npm install

- name: Building project
run: npm run build

- name: Running tests
run: npm run test

- name: Uploading production-ready build files
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit c47f954

Please sign in to comment.