Skip to content

Commit

Permalink
feat: workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Nelfimov committed Jan 31, 2024
1 parent 9a9625c commit 4d97485
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 111 deletions.
54 changes: 12 additions & 42 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,45 +3,15 @@ name: Checks
on: [pull_request]

jobs:
run:
name: Run
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18.13'

- name: Install
run: yarn install
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'

- name: Lint
run: yarn checks lint
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'

- name: TypeCheck
run: yarn checks typecheck
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'

- name: TestUnit
run: yarn checks test unit
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'

- name: TestIntegration
run: yarn checks test integration
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'

- name: Release
run: yarn checks release
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
check:
name: Typecheck, lint
uses: atls/tools/.github/workflows/reusable-checks.yaml@master
permissions: write-all
release:
name: Release
uses: atls/tools/.github/workflows/reusable-release.yaml@master
permissions: write-all
test:
name: Tests
uses: atls/tools/.github/workflows/reusable-tests.yaml@master
permissions: write-all
43 changes: 7 additions & 36 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -1,40 +1,11 @@
name: Publish
name: Checks

on:
workflow_dispatch:
on: [pull_request]

jobs:
run:
publish:
name: Publish
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: master

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.13'

- name: Install
run: yarn install

- name: Npm Publish
run: |
yarn version apply --all
yarn workspaces changed foreach --verbose --topological --no-private npm publish --access public
env:
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Commit changes
uses: EndBug/add-and-commit@v9
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
with:
author_name: Atls Github Bot
author_email: [email protected]
message: 'chore(common): publish'
branch: master
uses: atls/tools/.github/workflows/reusable-publish.yaml@master
permissions: write-all
secrets:
npmAuthToken: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.ISSUE_STALE }}
stale-issue-message: 'Статус?'
Expand Down
34 changes: 2 additions & 32 deletions .github/workflows/version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,35 +9,5 @@ on:
jobs:
run:
name: Version
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: master

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.13'

- name: Install
run: yarn install
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'

- name: Version
run: yarn workspaces changed foreach --no-private --verbose version patch --deferred
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'

- name: Commit changes
uses: EndBug/add-and-commit@v9
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
with:
author_name: Atls Github Bot
author_email: [email protected]
message: 'chore(common): versions'
branch: master
uses: atls/tools/.github/workflows/reusable-version.yaml@master
permissions: write-all

0 comments on commit 4d97485

Please sign in to comment.