Skip to content

firefox variant plugin: use replace() instead of replaceAll() (#70) #259

firefox variant plugin: use replace() instead of replaceAll() (#70)

firefox variant plugin: use replace() instead of replaceAll() (#70) #259

Workflow file for this run

name: CI Checks
on: push
jobs:
ci-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
with:
persist-credentials: false
- name: Install Node.js 20 📗
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install pnpm 📦
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install Dependencies 📥
run: | # Install npm packages
pnpm install
- name: Lint and Type Check 🧹
run: | # Run the lint and type check
pnpm run typecheck
pnpm run fmt:check
pnpm run lint
- name: Test 🧪
run: | # Run the tests
pnpm run test
- name: Ensure Package is Publishable 🧐
run: | # Run the prepublish hook to ensure the package is publishable
pnpm run prepublishOnly