-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
5 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 |
---|---|---|
|
@@ -23,15 +23,17 @@ jobs: | |
with: | ||
node-version: 20 | ||
- run: npm ci | ||
- run: npm install @playwright/[email protected] @cucumber/cucumber@${{ matrix.cucumberVersion }} | ||
- run: npm install @cucumber/cucumber@${{ matrix.cucumberVersion }} | ||
- run: npx playwright install --with-deps chromium | ||
- name: run tests | ||
run: | | ||
# node test/setup.mjs | ||
# node test/bdd-syntax/test.mjs | ||
# node test/snippets-playwright-style/test.mjs | ||
# this command gets all test files in powershell | ||
node test/setup.mjs | ||
node test/bdd-syntax/test.mjs | ||
node test/snippets-playwright-style/test.mjs | ||
# this command gets all test files in powershell | ||
# node --test $(Get-ChildItem -Path test -Recurse -Include test.mjs).FullName | ||
node --test test/**/test.mjs | ||
# node --test $(Get-ChildItem -Path test -Recurse -Include test.mjs).FullName | ||
- uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
|