Skip to content

feat: add default .gitignore entries during init (#7) #17

feat: add default .gitignore entries during init (#7)

feat: add default .gitignore entries during init (#7) #17

Workflow file for this run

name: tests
on:
workflow_call:
pull_request:
branches: ["main"]
paths-ignore:
- '.devcontainer/**'
- '.github/workflows/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: '22.x'
- run: npm install
- run: npm run lint
- run: npm test