mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-10 01:01:55 +01:00
68 lines
1.8 KiB
YAML
68 lines
1.8 KiB
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
name: Create artifacts
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
# Initialization
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '18'
|
|
- run: npm ci
|
|
- name: Copy configuration
|
|
run: cp config.json.example config.json
|
|
|
|
# Run linter
|
|
- name: Lint
|
|
run: npm run lint
|
|
|
|
# Create Chrome artifacts
|
|
- name: Create Chrome artifacts
|
|
run: npm run build:chrome
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ChromeExtension
|
|
path: dist
|
|
- run: mkdir ./builds
|
|
- uses: montudor/action-zip@v1
|
|
with:
|
|
args: zip -qq -r ./builds/ChromeExtension.zip ./dist
|
|
|
|
# Create Firefox artifacts
|
|
- name: Create Firefox artifacts
|
|
run: npm run build:firefox
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: FirefoxExtension
|
|
path: dist
|
|
- uses: montudor/action-zip@v1
|
|
with:
|
|
args: zip -qq -r ./builds/FirefoxExtension.zip ./dist
|
|
|
|
# Create Beta artifacts (Builds with the name changed to beta)
|
|
- name: Create Chrome Beta artifacts
|
|
run: npm run build:chrome -- --env stream=beta
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ChromeExtensionBeta
|
|
path: dist
|
|
- uses: montudor/action-zip@v1
|
|
with:
|
|
args: zip -qq -r ./builds/ChromeExtensionBeta.zip ./dist
|
|
|
|
- name: Create Firefox Beta artifacts
|
|
run: npm run build:firefox -- --env stream=beta
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: FirefoxExtensionBeta
|
|
path: dist
|
|
- uses: montudor/action-zip@v1
|
|
with:
|
|
args: zip -qq -r ./builds/FirefoxExtensionBeta.zip ./dist
|
|
|