Skip to content

chore: update version to 0.1.0 in package.json and package-lock.json,… #28

chore: update version to 0.1.0 in package.json and package-lock.json,…

chore: update version to 0.1.0 in package.json and package-lock.json,… #28

Workflow file for this run

name: CI
on:
push:
branches: [master, develop]
pull_request:
branches: [master]
jobs:
validate:
name: Validate and Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Type checking
run: npm run type-check
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
retention-days: 7