Skip to content

Prime vue Integration #97

Prime vue Integration

Prime vue Integration #97

Workflow file for this run

name: Test package
on:
pull_request:
push:
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Setup node
- uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: clean-install
run: npm install
- name: lint check
run: npm run lint
- name: build
run: npm run build