-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
74b49bc
commit e184126
Showing
1 changed file
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,21 +13,28 @@ jobs: | |
steps: | ||
- name: Checkout PROD | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Node.js latest | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: latest | ||
check-latest: true | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Run ESLint | ||
run: npx eslint --no-error-on-unmatched-pattern . | ||
run: npx eslint --no-error-on-unmatched-pattern. | ||
|
||
- name: Run all tests | ||
run: npm run test | ||
|
||
- name: Generate build | ||
env: | ||
CI: false | ||
run: npm run build | ||
|
||
# Share artifact inside workflow | ||
# Share artifact | ||
- name: Share artifact inside workflow | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
|
@@ -38,4 +45,4 @@ jobs: | |
uses: ncipollo/[email protected] | ||
with: | ||
artifacts: "react-github-actions-build" | ||
tag: v1.5.4.7 | ||
tag: v1.5.5 |