Files

32 lines
658 B
YAML
Raw Normal View History

2019-09-26 17:48:38 -04:00
name: Node CI
2019-10-21 21:02:15 -04:00
on: [push, pull_request]
2019-09-26 17:48:38 -04:00
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x]
2019-09-26 17:48:38 -04:00
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
node --version
npm --version
yarn --version
yarn
yarn bootstrap
yarn test:all:ci
env:
CI: true
2019-10-21 21:02:15 -04:00
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
2019-09-30 15:55:29 -04:00
NODE_OPTIONS: --max-old-space-size=4096