21 |
uses: actions/setup-node@v3 |
uses: actions/setup-node@v3 |
22 |
with: |
with: |
23 |
node-version: ${{ matrix.node-version }} |
node-version: ${{ matrix.node-version }} |
24 |
cache: 'npm' |
|
25 |
- run: npm update |
- name: "Install Dependencies" |
26 |
|
- run: npm install |
27 |
|
|
28 |
|
- name: "Install Dev Dependencies" |
29 |
|
- run: npm install --dev |
30 |
|
|
31 |
|
- name: "Run ESLint" |
32 |
|
- run: npm run lint |
33 |
|
|
34 |
|
- name: "Build" |
35 |
|
- run: npm run build --if-present |
36 |
|
|
37 |
|
- name: "Run Test Suites" |
38 |
- run: npm run test --if-present |
- run: npm run test --if-present |