-
Notifications
You must be signed in to change notification settings - Fork 3
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
11 additions
and
12 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 |
---|---|---|
|
@@ -32,20 +32,19 @@ jobs: | |
node-version: 10.x | ||
- name: Install dependencies | ||
run: npm install | ||
- name: Run headless test | ||
uses: GabrielBB/[email protected] | ||
with: | ||
|
||
# Basic testing | ||
run: | | ||
npm ci | ||
env: | ||
CI: true | ||
- name: Run headless test 1 (Basic) | ||
run: npm ci | ||
|
||
# Run headless test (Mocha test) | ||
#uses: GabrielBB/[email protected] | ||
#with: | ||
# run: | | ||
# npm test | ||
|
||
# Test once the grammar. FIXME: we need code examples! | ||
- name: Run headless test 2 (Validate grammar) | ||
# Test once the grammar. FIXME: we need SCP code examples! | ||
with: | ||
run: | | ||
export CI_NIX_FOLDER="$PWD" | ||
.ci-commands/project/test.sh | ||
if: runner.os == 'Linux' | ||
|
||
|