Skip to content

Bump @sideway/formula from 3.0.0 to 3.0.1 #9

Bump @sideway/formula from 3.0.0 to 3.0.1

Bump @sideway/formula from 3.0.0 to 3.0.1 #9

Workflow file for this run

name: Lint, test and build
on:
push:
branches: [ master ]
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
test-suite: [ 'test-unit', 'test-integration', 'test-ci:cypress' ]
steps:
- uses: actions/checkout@v3
- run: sudo apt-get install -y libgconf-2-4
- uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn ${{ matrix.test-suite }}
- run: yarn build