-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from abn/ci/main
ci: add main workflow
- Loading branch information
Showing
11 changed files
with
114 additions
and
1,689 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 |
---|---|---|
@@ -0,0 +1,111 @@ | ||
name: Main Workflow | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
merge_group: | ||
|
||
jobs: | ||
lint-checks: | ||
name: Lint Check | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup build environment | ||
uses: ./.github/actions/setup | ||
|
||
- name: Run Lint | ||
shell: bash | ||
run: pnpm lint | ||
|
||
- name: Run format checks | ||
shell: bash | ||
run: pnpm exec prettier --check . | ||
|
||
build-checks: | ||
name: Build Check | ||
needs: | ||
- lint-checks | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup build environment | ||
uses: ./.github/actions/setup | ||
|
||
- name: Build distribution | ||
shell: bash | ||
run: pnpm build | ||
|
||
- name: Verify no files changed during build | ||
uses: tj-actions/verify-changed-files@v20 | ||
id: verify-changed-files | ||
with: | ||
fail-if-changed: "true" | ||
files: | | ||
pnpm-lock.yaml | ||
- name: Build package | ||
shell: bash | ||
run: pnpm pack | ||
|
||
- name: Upload package | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist-tarball | ||
path: | | ||
node-tado-client-*.tgz | ||
tests: | ||
name: Run Tests | ||
needs: | ||
- lint-checks | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup build environment | ||
uses: ./.github/actions/setup | ||
|
||
- name: Build distribution | ||
shell: bash | ||
run: pnpm build | ||
|
||
- name: Run test suite | ||
shell: bash | ||
run: pnpm test | ||
|
||
publish-check: | ||
name: Check publishing | ||
needs: | ||
- build-checks | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup build environment | ||
uses: ./.github/actions/setup | ||
|
||
- name: Build distribution | ||
shell: bash | ||
run: pnpm build | ||
|
||
- name: Publish package | ||
run: pnpm publish --access public --no-git-checks --dry-run |
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 |
---|---|---|
|
@@ -62,3 +62,6 @@ typings/ | |
|
||
# typedoc | ||
docs/ | ||
|
||
# build output | ||
build/ |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.