Skip to content

feat: support git sub directory #345 #588

feat: support git sub directory #345

feat: support git sub directory #345 #588

Workflow file for this run

name: Build
on:
push:
pull_request:
branches:
- main
permissions:
contents: read
packages: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16.x
cache: "npm"
registry-url: "https://npm.pkg.github.com"
- run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npm run format-check
- run: npm run lint
- run: npm run build
- run: npm run test