Update all non-major dependencies #1286
Workflow file for this run
This file contains 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: Node | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Clone repository | |
- uses: actions/setup-node@v3 | |
name: Setup Node.js | |
with: | |
node-version: '18' | |
cache: npm | |
- name: Install Dependencies | |
run: npm install | |
- name: Lint | |
run: npm run lint | |
- name: Build Firefox Extension | |
run: npm run build:firefox | |
- uses: actions/upload-artifact@v3 | |
name: Upload Firefox artifact | |
with: | |
name: aria2-integration-firefox | |
path: ./dist/ | |
- name: Build Chromium Extension | |
run: npm run build:chromium | |
- uses: actions/upload-artifact@v3 | |
name: Upload Chromium artifact | |
with: | |
name: aria2-integration-chromium | |
path: ./dist/ |