Skip to content

Configure ci for lint #1

Configure ci for lint

Configure ci for lint #1

Workflow file for this run

name: Publish React Package to npmjs
on:
push:
jobs:
vue-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "20.x"
- run: |
cd vue
npm ci
npm run lint
react-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "20.x"
- run: |
cd react
npm ci
npm run lint