1
0
Fork 0
mirror of https://github.com/rharkor/caching-for-turbo.git synced 2025-06-09 09:35:17 +09:00

feat: ci windows

This commit is contained in:
rharkor 2024-06-22 20:29:46 +02:00
parent 986549659d
commit 7c34b606a2

View file

@ -68,3 +68,29 @@ jobs:
- name: Test build cache
run: npm run test
test-action-windows:
name: GitHub Actions Test (Windows)
runs-on: windows-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
- name: Install Dependencies
id: npm-ci
run: npm ci
- name: Test Local Action
uses: ./
- name: Test build cache
run: npm run test