Skip to content

feat: option to disable transparency in overlay #185

feat: option to disable transparency in overlay

feat: option to disable transparency in overlay #185

Workflow file for this run

on:
push:
branches: [trunk]
pull_request:
types: [opened, synchronize]
name: CI
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12'
- run: yarn install --immutable
- uses: actions/cache@v1
id: cache-build
with:
path: '.'
key: ${{ github.sha }}
validate:
name: Validate
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/cache@v1
id: restore-build
with:
path: '.'
key: ${{ github.sha }}
- uses: actions/setup-node@v1
with:
node-version: '12'
- run: yarn run validate
env:
CI: true