Skip to content
This repository has been archived by the owner on Jan 2, 2024. It is now read-only.

Commit

Permalink
Chore: Setup CI/CD configs
Browse files Browse the repository at this point in the history
  • Loading branch information
DHedgecock committed Feb 25, 2020
1 parent c1132dd commit fdd3bbc
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Code Owners

# Package code owners will be requested for review for pull requests
* @dhedgecock
60 changes: 60 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: CI/CD
on: [push]

jobs:
skip:
name: CI Skip
if: contains(github.event.head_commit.message, 'skip ci')
runs-on: ubuntu-latest
steps:
- name: Skip CI Commit
run: echo "Skip CI commit success"

test:
name: Continuous Integration
if: contains(github.event.head_commit.message, 'skip ci') == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: '12'
- name: Install
run: CI=true npm install
- name: Code Climate - Setup
# Install the Code Climate reporter in workspace
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
chmod +x ./cc-test-reporter
./cc-test-reporter before-build
- name: Test
run: npm test
- name: Code Climate - Report
if: success()
# Upload test code coverage report to Code Climate (branch must be explicitly set)
run: |
export GIT_BRANCH="${GIT_BRANCH:-${GITHUB_REF:11}}"
./cc-test-reporter after-build
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
GIT_BRANCH: ${{ github.head_ref }}

publish:
name: Continuous Deployment
needs: test
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: '12'
- name: Install
run: CI=true npm install
- name: Release
run: npx semantic-release
env:
GH_TOKEN: ${{ secrets.SEMANTIC_GH_TOKEN }}
NPM_TOKEN: ${{ secrets.SEMANTIC_NPM_TOKEN }}

0 comments on commit fdd3bbc

Please sign in to comment.