Skip to content

---

--- #485

Workflow file for this run

name: integration
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm install
- run: npm run test -- edit-in-place --no-watch --no-progress --browsers=ChromeHeadless
- run: npm run prettier:check
env:
CI: true