Skip to content

Migrated components to shadcn UI #72

Migrated components to shadcn UI

Migrated components to shadcn UI #72

Workflow file for this run

name: Build CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
lint:
runs-on: ubuntu-latest
name: Lint code
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 23
- name: Lint
run: |
npm install
npm run ci:lint
test:
runs-on: ubuntu-latest
name: Run tests
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 23
- name: Test
run: |
npm install
npm run ci:test
build:
runs-on: ubuntu-latest
name: Build production
needs: [lint, test]
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 23
- name: Build
run: |
npm install
npm run ci:build
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: web-activity-plugin
path: dist