Skip to content

chore: add license (#36) #2

chore: add license (#36)

chore: add license (#36) #2

Workflow file for this run

name: Sanity
on:
push:
branches:
- main
# TODO(@raducristianpopa): add lint/format checks and tests
jobs:
build:
name: Build extension
strategy:
fail-fast: false
matrix:
browser: [chrome, firefox, opera, edge]
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'yarn'
- name: Install dependencies
run: rm -rf node_modules && yarn install --frozen-lockfile
- name: Build
run: yarn build:${{ matrix.browser }}