Skip to content

Commit

Permalink
chore: add action to debug windows
Browse files Browse the repository at this point in the history
  • Loading branch information
targos committed Feb 2, 2024
1 parent 13209f1 commit c8d3066
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Node.js CI

on:
push:

jobs:
lint:
name: Debug failing test

runs-on: windows-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Use LTS Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x

- name: Install packages
run: npm install

- name: Run lint
run: node test/test-grab-project.js

0 comments on commit c8d3066

Please sign in to comment.