Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/test-in-browser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ jobs:

- run: npm ci
- run: npm run build --workspaces --if-present
- run: npm run test:browser --workspaces --if-present
- run: npm run --silent test:browser --workspaces --if-present

6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
# CLI Tests
# running "npm install" places the cli in node_modules/bin
- run: npm install --ignore-scripts
- run: npm run test:cli --workspace="@csstools/postcss-base-plugin"
- run: npm run --silent test:cli --workspace="@csstools/postcss-base-plugin"

# Run e2e tests
test_e2e:
Expand All @@ -67,10 +67,10 @@ jobs:
cd e2e/webpack/bundle-through
npm install
npm run build
npm run test
npm run --silent test

# Deno compatibility
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x.x
- run: npm run test:deno --workspaces --if-present
- run: npm run --silent test:deno --workspaces --if-present
2 changes: 2 additions & 0 deletions cli/csstools-cli/test/cli/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ csstools-cli css-has-pseudo ./test/cli/basic.css --output ./test/cli/basic.resul

# Check result
git --no-pager diff --no-index --word-diff ./test/cli/basic.expect.css ./test/cli/basic.result.css

echo "pass csstools-cli"
Loading