Skip to content

Commit

Permalink
Merge pull request #107 from edx/aht/BOM-2931-replace-travis-with-git…
Browse files Browse the repository at this point in the history
…hub-actions

BOM-2931: Replace Travis with GitHub CI
  • Loading branch information
UsamaSadiq authored Nov 20, 2021
2 parents f97e311 + 0aa0d34 commit c6b8bd8
Show file tree
Hide file tree
Showing 4 changed files with 75 additions and 23 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Node CI

on:
push:
branches:
- master
pull_request:
branches:
- "**"

jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Nodejs
uses: actions/setup-node@v2
with:
node-version: 8

- name: Install Dependencies
run: npm ci

- name: Lint
run: npm run lint

- name: Build
run: npm run build

- name: Send failure notification
if: ${{ failure() }}
uses: dawidd6/action-send-mail@v3
with:
server_address: email-smtp.us-east-1.amazonaws.com
server_port: 465
username: ${{secrets.EDX_SMTP_USERNAME}}
password: ${{secrets.EDX_SMTP_PASSWORD}}
subject: CI workflow failed in ${{github.repository}}
to: [email protected]
from: github-actions <[email protected]>
body: CI workflow in ${{github.repository}} failed! For details see "github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
32 changes: 32 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@

on:
push:
branches:
- master

jobs:
release:
name: Release
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 12

- name: Install dependencies
run: npm ci

- name: Create Build
run: npm run build

- name: Release Package
env:
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }}
run: npm run semantic-release
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.edx-bootstrap
.gitignore
.npmignore
.travis.yml
_config.yml
doc
node_modules
Expand Down
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

0 comments on commit c6b8bd8

Please sign in to comment.