From 5b83f972949700c84ee1ee04cc2446a5b9f4c697 Mon Sep 17 00:00:00 2001 From: Dylon Edwards Date: Wed, 20 Nov 2024 15:06:49 -0500 Subject: [PATCH] Fixes script execution policy for Windows --- .github/workflows/test-windows.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index 6afca0d..5dc9c74 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -31,4 +31,6 @@ jobs: with: node-version: ${{ matrix.node-version }} - run: npm install - - run: npm test + - run: | + Set-ExecutionPolicy Bypass -Scope Process + npm test