Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/npm_and_yarn/chart.js-2.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
anvithks authored May 24, 2021
2 parents 5407831 + 29028f9 commit 8a51b43
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 14 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# This is a the GitHub Action to run the CI for SODA Dashboard
name: SODA Dashboard CI
# Triggers the workflow on push or pull request events but only for the main branch
# Allows you to run this workflow manually from the Actions tab
on: [push, pull_request, workflow_dispatch]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-16.04, ubuntu-18.04, ubuntu-latest]
node-version: [8.x]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: 'Checkout the project repository'
uses: actions/checkout@v2

# Install the version of node specified in the matrix.
- name: 'Using Node.js version: ${{ matrix.node-version }}, Build type: ${{ matrix.build-type }}'
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y nginx make
env:
CI: true
- name: Build the dashboard
run: make
env:
CI: true
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Releases](https://img.shields.io/github/release/sodafoundation/dashboard/all.svg?style=flat-square)](https://github.com/sodafoundation/dashboard/releases)
[![LICENSE](https://img.shields.io/github/license/sodafoundation/dashboard.svg?style=flat-square)](https://github.com/sodafoundation/dashboard/blob/master/LICENSE)

[![SODA Dashboard CI](https://github.com/sodafoundation/dashboard/actions/workflows/ci.yml/badge.svg)](https://github.com/sodafoundation/dashboard/actions/workflows/ci.yml)
<img src="https://sodafoundation.io/wp-content/uploads/2020/01/SODA_logo_outline_color_800x800.png" width="200" height="200">

## Introduction
Expand Down

0 comments on commit 8a51b43

Please sign in to comment.