Skip to content

bump to release 0.8.0 #64

bump to release 0.8.0

bump to release 0.8.0 #64

Workflow file for this run

name: Master Integration
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v2
- name: Install Chromium Library Dependencies
run: |
sh ./.github/workflows/chromium-lib-install.sh
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Installing project dependencies
run: |
yarn install --frozen-lockfile
- name: Lint
run: |
yarn lint
- name: Build
run: |
yarn clean && yarn build