Skip to content

Disable CI on Windows #2198

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 10, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 24 additions & 23 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,29 +48,30 @@ jobs:
run: npm test
- name: Test browser build
run: node tests/browser-asc
test-windows:
name: "Compiler (Windows, node current)"
runs-on: windows-latest
needs: check
steps:
- uses: actions/[email protected]
- uses: dcodeIO/setup-node-nvm@master
with:
node-version: current
- name: Install dependencies
run: npm ci --no-audit
- name: Clean distribution files
run: npm run clean
- name: Test sources
run: npm test
- name: Build distribution files
run: npm run build
- name: Update entry file
run: npm run prepare-ci
- name: Test distribution
run: npm test
- name: Test browser build
run: node tests/browser-asc
# see: https://github.com/npm/cli/issues/4234
# test-windows:
# name: "Compiler (Windows, node current)"
# runs-on: windows-latest
# needs: check
# steps:
# - uses: actions/[email protected]
# - uses: dcodeIO/setup-node-nvm@master
# with:
# node-version: current
# - name: Install dependencies
# run: npm ci --no-audit
# - name: Clean distribution files
# run: npm run clean
# - name: Test sources
# run: npm test
# - name: Build distribution files
# run: npm run build
# - name: Update entry file
# run: npm run prepare-ci
# - name: Test distribution
# run: npm test
# - name: Test browser build
# run: node tests/browser-asc
test-macos:
name: "Compiler (MacOS, node current)"
runs-on: macos-latest
Expand Down