Bump actions/upload-artifact from 4.3.3 to 4.3.6 #2334
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
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- { node-version: 14.x, lint: false, tests: true } | |
- { node-version: 16.x, lint: true, tests: true } | |
- { node-version: 17.x, lint: true, tests: true } | |
- { node-version: 18.x, lint: true, tests: true } | |
- { node-version: 19.x, lint: true, tests: true } | |
- { node-version: 20.x, lint: true, tests: true } | |
- { node-version: 21.x, lint: true, tests: true } | |
name: nodejs ${{ matrix.node-version }} (${{ matrix.lint && 'lint → ' || '' }}${{ matrix.tests && 'test → ' || '' }}build) | |
steps: | |
- uses: actions/[email protected] | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Cache node modules | |
id: cache-npm | |
uses: actions/[email protected] | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json', '**/package.json') }} | |
- name: Cache eslint | |
id: cache-eslint | |
uses: actions/[email protected] | |
env: | |
cache-name: cache-eslint | |
with: | |
path: .eslintcache | |
key: ${{ env.cache-name }}-${{ hashFiles('**/package-lock.json', '**/package.json') }} | |
- name: Cache TypeScript | |
id: cache-typescript | |
uses: actions/[email protected] | |
env: | |
cache-name: cache-typescript | |
with: | |
path: .tsbuildinfo | |
key: ${{ env.cache-name }}-${{ hashFiles('**/package-lock.json', '**/package.json') }} | |
- name: Cache prettier | |
id: cache-prettier | |
uses: actions/[email protected] | |
env: | |
cache-name: cache-prettier | |
with: | |
path: node_modules/.cache/prettier/.prettier-cache | |
key: ${{ env.cache-name }}-${{ hashFiles('**/package-lock.json', '**/package.json') }} | |
- name: Install dependencies | |
run: npm install | |
if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }} | |
- name: Lint the project | |
run: npm run lint | |
if: ${{ matrix.lint }} | |
- name: Run tests | |
run: npm test | |
if: ${{ matrix.tests }} | |
- name: Upload code coverage | |
uses: actions/[email protected] | |
with: | |
name: code-coverage | |
path: coverage/lcov.info | |
if: ${{ matrix.node-version == '18.x' }} | |
- name: Build the project | |
run: npm run build |