Skip to content

ci(github): add page test for examples/vite in workflow test.yml #3

ci(github): add page test for examples/vite in workflow test.yml

ci(github): add page test for examples/vite in workflow test.yml #3

Workflow file for this run

name: lint
on: [push, pull_request]
permissions:
contents: write
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Use Node.js
uses: actions/setup-node@v6
with:
cache: npm
node-version-file: .nvmrc
- name: Install dependencies
run: npm ci --prefer-offline
- name: Run ESLint
run: npm run lint
- name: Build package
run: npm run build
- name: Check type
run: npm run lint:tsc