-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(Windows): adapt path sanitization and npx.cmd (#80)
* chore(website): improve background * chore(website): improve background * chore: remove npx from scripts * chore: remove npx from scripts * chore: change multiple scripts from ";" to "&&" * ci: fix env on Windows * ci: remove docker from windows * ci(windows): add Bun * ci(windows): revert Bun * ci(windows): better icon
- Loading branch information
1 parent
05cb0da
commit a30359d
Showing
6 changed files
with
71 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: '🪟' | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
node: | ||
runs-on: windows-latest | ||
timeout-minutes: 5 | ||
strategy: | ||
fail-fast: false | ||
name: Windows | ||
steps: | ||
- name: ➕ Actions - Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: ➕ Actions - Setup NodeJS | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20.x' | ||
cache: 'npm' | ||
|
||
- name: ➕ Actions - Setup NodeJS | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20.x' | ||
|
||
- name: 📦 Installing Dependencies | ||
run: npm ci | ||
|
||
- name: 🤹🏻♀️ Building the Project | ||
run: npm run build | ||
|
||
- name: 🔬 Node | ||
run: npm run test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters