Skip to content

wip: migration from travis ci to github actions #1 #38

wip: migration from travis ci to github actions #1

wip: migration from travis ci to github actions #1 #38

Workflow file for this run

name: Run Tests
on: [push]
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ vars.NODE_VERSION }}
- name: Install dependencies
run: yarn
- name: Run tests
id: run-tests
run: |
git clone https://oauth2:$TOKEN_GITHUB@github.com/kalisio/development.git "development"
source development/workspaces/libs/libs.sh feathers-webpush
yarn test
env:
TOKEN_GITHUB: ${{ vars.TOKEN_GITHUB }}
- name: Notify on slack
if: always()
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ vars.SLACK_WEBHOOK }}
SLACK_CHANNEL: libs
SLACK_USERNAME: GitHub Actions
SLACK_ICON: https://github.githubassets.com/assets/GitHub-Mark-ea2971cee799.png
SLACK_COLOR: ${{ steps.run-tests.outcome == 'success' && 'good' || 'danger' }}
SLACK_MESSAGE: Build of ${{ github.repository }}@${{ github.ref_name }} by ${{ github.actor }} ${{ steps.run-tests.outcome == 'success' && 'passed' || 'failed' }}
SLACK_FOOTER:
coverage:
needs: [ test ]
name: coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ vars.NODE_VERSION }}
- run: npm install -g yarn
- run: yarn
- uses: paambaati/codeclimate-action@v5.0.0
env:
CC_TEST_REPORTER_ID: 8e87a996279373f05f01ce8166aac1bc9dda990e9a2f936af25e5aa11326b127
with:
coverageCommand: |
git clone https://oauth2:$TOKEN_GITHUB@github.com/kalisio/development.git "development"
source development/workspaces/libs/libs.sh feathers-webpush
yarn test
debug: true