Skip to content

Commit

Permalink
Merge pull request #60 from abn/ci/main
Browse files Browse the repository at this point in the history
ci: add main workflow
  • Loading branch information
mattdavis90 authored Oct 26, 2024
2 parents edf6b61 + fc7b152 commit ab73a1d
Show file tree
Hide file tree
Showing 11 changed files with 114 additions and 1,689 deletions.
111 changes: 111 additions & 0 deletions .github/workflows/main.yaml
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,6 @@ typings/

# typedoc
docs/

# build output
build/
230 changes: 0 additions & 230 deletions build/index.d.ts

This file was deleted.

Loading

0 comments on commit ab73a1d

Please sign in to comment.