Skip to content

Update version

Update version #33

Workflow file for this run

name: Complete Check
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '12', '14', '16' ]
name: Node ${{ matrix.node }} build
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: ${{ matrix.node }}
- uses: browser-actions/setup-chrome@latest
with:
chrome-version: beta
- uses: browser-actions/setup-firefox@latest
with:
firefox-version: latest-beta
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-node${{ matrix.node }}-${{ hashFiles('**/yarn.lock') }}
- name: Install
run: yarn
- name: Build
run: yarn build
- run: sudo apt-get install xvfb
- name: Test
run: KARMA_BROWSERS=Chrome,Firefox xvfb-run --auto-servernum yarn test