Skip to content

chore(deps): bump actions/upload-artifact from 3 to 5 #39

chore(deps): bump actions/upload-artifact from 3 to 5

chore(deps): bump actions/upload-artifact from 3 to 5 #39

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run type check
run: npm run typecheck
- name: Build project
run: npm run build
- name: Upload build artifacts
if: matrix.node-version == '20.x'
uses: actions/upload-artifact@v5
with:
name: dist
path: dist/