Skip to content

Commit

Permalink
test only
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaskiewicz committed May 4, 2024
1 parent ff4e296 commit 47227c2
Showing 1 changed file with 1 addition and 26 deletions.
27 changes: 1 addition & 26 deletions .github/workflows/main-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,31 +18,6 @@ jobs:
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Format Check
run: npm run prettier.dry-run
- name: Build project
run: npm run build

- name: Run Tests
run: npm test -- --no-watch

# Verify that the Example Project Builds
- name: Install Example Project Dependencies
working-directory: './example'
run: npm ci

- name: Build Example Project
working-directory: './example'
run: npm run build

- name: Verify No Files Have Changed
working-directory: './example'
# here we check that there are no changed / new files.
# we use `git status` and check if there are more than 0 lines in the output.
run: |
if [[ $(git status --short | wc -l) -ne 0 ]]; then
STATUS=$(git status --verbose);
printf "%s" "$STATUS";
git diff | cat;
exit 1;
fi
shell: bash

0 comments on commit 47227c2

Please sign in to comment.