Skip to content

Add built Custom Elements into the npm package #38

Add built Custom Elements into the npm package

Add built Custom Elements into the npm package #38

Workflow file for this run

name: Code lint, check and test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 21
cache: 'pnpm'
- name: Install dependendencies
run: npm i
- name: Build project
run: npm run build
- name: Run lint
run: npm run lint
- name: Run check
run: npm run check
- name: Run tests
run: npm run test