Skip to content

Commit

Permalink
Merge pull request #45 from ProjectMirador/ci
Browse files Browse the repository at this point in the history
  • Loading branch information
camillevilla authored Aug 18, 2021
2 parents 1c70e08 + 942cfab commit d6f7a7b
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 13 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Node.js CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- run: npm install -g codecov
- run: npm install
- run: npm test
- run: codecov
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

0 comments on commit d6f7a7b

Please sign in to comment.