Skip to content

Merge pull request #261 from dermatologist/dependabot/npm_and_yarn/js… #394

Merge pull request #261 from dermatologist/dependabot/npm_and_yarn/js…

Merge pull request #261 from dermatologist/dependabot/npm_and_yarn/js… #394

Workflow file for this run

name: CI
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Begin CI...
uses: actions/checkout@v2
- name: Use Node 12
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Use cached node_modules
uses: actions/cache@v1
with:
path: node_modules
key: nodeModules-${{ hashFiles('**/package-lock.lock') }}
restore-keys: |
nodeModules-
- name: Install dependencies
run: npm install
env:
CI: true
- name: Test
run: npm test
env:
CI: true