Skip to content

Prep v.0.0.10

Prep v.0.0.10 #27

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- name: "Check it out now"
uses: actions/checkout@v4
- name: "Install pnpm"
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: "⬇️ Install dependencies"
run: pnpm i
- name: "🧪 Testing, testing, 1, 2, 3"
run: pnpm t
- name: "📦 Package up all the things"
run: "pnpm build"
- name: "🔍 Verify package for Firefox"
run: "pnpm web-ext:lint"