Skip to content

fix: set --directory path when trying to find a script environment #49

fix: set --directory path when trying to find a script environment

fix: set --directory path when trying to find a script environment #49

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: "Set up Node.js"
uses: actions/setup-node@v5
with:
node-version: 24
- name: Install dependencies
run: npm install
- name: Run checks
run: npm run lint
- name: Run tests
run: npm run test