chore(deps): update all non-major dependencies #338
Workflow file for this run
This file contains hidden or 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: Build Extensions | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
timeout-minutes: 20 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .tool-versions | |
cache: npm | |
- name: Install dependencies | |
run: npm install | |
- name: Build Chrome Extension | |
run: npm run build chrome | |
- name: Build Firefox Extension | |
run: npm run build firefox | |
- name: Build Edge Extension | |
run: npm run build edge | |
- name: Build Opera Extension | |
run: npm run build opera | |
- name: Build Safari Extension | |
run: npm run build safari | |
- name: Archive packages | |
uses: actions/upload-artifact@v4 | |
with: | |
name: packages | |
path: packages |