Merge pull request #997 #43
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: Test Build Extension | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- Extensions/combined/** | |
pull_request: | |
branches: | |
- main | |
paths: | |
- Extensions/combined/** | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
defaults: | |
run: | |
working-directory: ./Extensions/combined | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Install dependencies | |
run: npm ci | |
- name: Build extension | |
run: npm run build | |
- name: Upload Chrome artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ryd-chrome | |
path: ./Extensions/combined/dist/chrome | |
- name: Upload Firefox artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ryd-firefox | |
path: ./Extensions/combined/dist/firefox | |
- name: Upload Safari artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ryd-safari | |
path: ./Extensions/combined/dist/safari |