forked from softprops/action-gh-release
-
Notifications
You must be signed in to change notification settings - Fork 0
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
10 additions
and
20 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 |
---|---|---|
@@ -1,26 +1,16 @@ | ||
name: Main | ||
|
||
on: [pull_request, push] | ||
on: | ||
pull_request: | ||
push: | ||
branches: main | ||
|
||
jobs: | ||
build: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# https://github.com/actions/checkout | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install | ||
run: npm ci | ||
- name: Build | ||
run: npm run build | ||
- name: Test | ||
run: npm run test | ||
- name: Format | ||
run: npm run fmtcheck | ||
# - name: "check for uncommitted changes" | ||
# # Ensure no changes, but ignore node_modules dir since dev/fresh ci deps installed. | ||
# run: | | ||
# git diff --exit-code --stat -- . ':!node_modules' \ | ||
# || (echo "##[error] found changed files after build. please 'npm run build && npm run fmt'" \ | ||
# "and check in all changes" \ | ||
# && exit 1) | ||
- uses: actions/checkout@v4 | ||
- run: npm ci | ||
- run: npm run build | ||
- run: npm run test | ||
- run: npm run fmtcheck |