Skip to content

fix: correctly detect missing packages in Windows #151

fix: correctly detect missing packages in Windows

fix: correctly detect missing packages in Windows #151

Workflow file for this run

name: CI
on:
push:
branches: [main]
workflow_call:
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: npm
node-version-file: .node-version
- run: npm ci
- run: npx run-s --continue-on-error check fmt-check licenses lint test
- if: github.event_name == 'push'
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}