Skip to content

Commit

Permalink
v1.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MrRefactoring committed Feb 8, 2024
1 parent 6c835f8 commit 7b5c117
Show file tree
Hide file tree
Showing 4 changed files with 1,418 additions and 885 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: push
jobs:
build:
name: Build
runs-on: self-hosted
runs-on: macos-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
Expand All @@ -23,7 +23,7 @@ jobs:
lint:
name: Lint Code
needs: build
runs-on: self-hosted
runs-on: macos-latest
strategy:
matrix:
node-version: [20.x]
Expand All @@ -36,7 +36,7 @@ jobs:
test_unit:
name: Unit Tests
needs: build
runs-on: self-hosted
runs-on: macos-latest
strategy:
matrix:
node-version: [18.x, 20.x]
Expand All @@ -49,7 +49,7 @@ jobs:
needs:
- lint
- test_unit
runs-on: self-hosted
runs-on: macos-latest
strategy:
max-parallel: 1
matrix:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: workflow_dispatch
jobs:
build:
name: Build
runs-on: self-hosted
runs-on: macos-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand All @@ -20,7 +20,7 @@ jobs:
lint:
name: Lint Code
needs: build
runs-on: self-hosted
runs-on: macos-latest
steps:
- name: Linting
run: npm run lint
Expand All @@ -30,7 +30,7 @@ jobs:
test_unit:
name: Unit Tests
needs: build
runs-on: self-hosted
runs-on: macos-latest
steps:
- name: Running unit tests
run: npm run test:unit
Expand All @@ -40,7 +40,7 @@ jobs:
needs:
- lint
- test_unit
runs-on: self-hosted
runs-on: macos-latest
steps:
- name: Creating `.env` file
run: |
Expand All @@ -55,7 +55,7 @@ jobs:
name: Package publish
needs:
- test_integration
runs-on: self-hosted
runs-on: macos-latest
steps:
- name: Publishing
run: npm publish
Expand All @@ -66,7 +66,7 @@ jobs:
name: Docs publish
needs:
- publish
runs-on: self-hosted
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
name: Create Git Tag
needs:
- publish
runs-on: self-hosted
runs-on: macos-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand All @@ -137,7 +137,7 @@ jobs:
name: Create GitHub Release
needs:
- creating-git-tag
runs-on: self-hosted
runs-on: macos-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand Down
Loading

0 comments on commit 7b5c117

Please sign in to comment.