Skip to content

Bump actions/upload-artifact from 7.0.0 to 7.0.1 (#623) #1020

Bump actions/upload-artifact from 7.0.0 to 7.0.1 (#623)

Bump actions/upload-artifact from 7.0.0 to 7.0.1 (#623) #1020

Workflow file for this run

name: Default Build & Test
on:
push:
branches: [ main ]
paths-ignore:
- '.github/workflows/installer-build.yaml'
- 'installer/**'
pull_request:
branches: [ main ]
paths-ignore:
- '.github/workflows/installer-build.yaml'
- 'installer/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16, 18, 20, 22, 24]
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: Run linting checks
if: ${{ matrix.node-version == 20 }}
run: npm run lint
- name: Run tests
run: npm run test