Skip to content

chore(deps): bump dawidd6/action-download-artifact from 2 to 6 in /.github/workflows in the github_actions group across 1 directory #28

chore(deps): bump dawidd6/action-download-artifact from 2 to 6 in /.github/workflows in the github_actions group across 1 directory

chore(deps): bump dawidd6/action-download-artifact from 2 to 6 in /.github/workflows in the github_actions group across 1 directory #28

Workflow file for this run

name: Build Test
on: [pull_request]
jobs:
build-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Setup npm cache
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Build Projects
run: npm run build