Skip to content

Move parsing/readability to background, drop Cheerio, finalize action… #26

Move parsing/readability to background, drop Cheerio, finalize action…

Move parsing/readability to background, drop Cheerio, finalize action… #26

Workflow file for this run

name: "Build"
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Cache pnpm modules
uses: actions/[email protected]
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/[email protected]
with:
version: latest
run_install: true
- name: Use Node.js 20.x
uses: actions/[email protected]
with:
node-version: 20.x
cache: "pnpm"
- name: Build the extension
run: pnpm build
- name: Upload the artifacts
uses: actions/upload-artifact@v4
with:
name: extension
path: build/*.zip