Skip to content

chore: init pnpm workspace #40

chore: init pnpm workspace

chore: init pnpm workspace #40

Workflow file for this run

name: PR Checks
on:
pull_request:
types:
- opened
- reopened
- synchronize
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# TODO(@raducristianpopa): add lint/format checks and tests
jobs:
build-extension:
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: Environment setup
uses: ./.github/actions/setup
- name: Build
shell: bash
run: pnpm extension build ${{ matrix.browser }}
- name: Upload artifacts
uses: actions/upload-artifact@v3.1.2
with:
name: ${{ github.event.pull_request.number }}-${{ matrix.browser }}
path: dist/${{ matrix.browser }}/${{ matrix.browser }}.zip
if-no-files-found: error
test-extension:
name: Test Extension
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Environment setup
uses: ./.github/actions/setup
- name: Test
run: pnpm extension test:ci
build-server:
name: Build Server
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Environment setup
uses: ./.github/actions/setup
- name: Build
shell: bash
run: pnpm wm-server build
# TODO: add tests for server
# test-server:
# name: Test Server
# runs-on: ubuntu-22.04
# steps:
# - name: Checkout repository
# uses: actions/checkout@v3
# - name: Environment setup
# uses: ./.github/actions/setup
# - name: Test
# shell: bash
# run: pnpm wm-server test:ci