chore: init pnpm workspace #40
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
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 |