Skip to content

Commit

Permalink
Create develop-test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
batosai committed Oct 26, 2024
1 parent 4ce3174 commit 6ac952c
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/develop-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: NPM publish

on:
push:
branches:
- 'develop'

env:
success:
failure: 🔴
cancelled:
skipped:
node_version: 20
true:
false: 🔴

jobs:
test:
name: Test
runs-on: ubuntu-22.04
steps:
- name: Update packages
run: sudo apt-get update

- name: Checkout
uses: actions/checkout@v3

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ env.node_version }}
registry-url: https://registry.npmjs.org/
cache: 'npm'

- name: Install Dependencies
run: npm ci

- name: Build
run: npm run build

- name: Run tests
run: npm test

- name: Notification
if: ${{ always() }}
uses: appleboy/telegram-action@master
with:
token: ${{ secrets.BOT_TOKEN }}
to: ${{ secrets.CHAT_ID }}
disable_web_page_preview: true
message: |
Test ${{ env[job.status] }} by ${{ github.actor }} for commit in ${{ github.ref_name }} branch.
Comment: ${{ github.event.commits[0].message }}
Repository: ${{ github.repository }}
See changes: https://github.com/${{ github.repository }}/commit/${{ github.sha }}
Github action: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}

0 comments on commit 6ac952c

Please sign in to comment.