time to fight pipeline

This commit is contained in:
Kendall Garner
2023-11-25 20:42:40 -08:00
parent d71bd3c1ef
commit 2e37a3f4d6
3 changed files with 9 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
name: 'Pipeline: Test, Lint, Build'
name: "Pipeline: Test, Lint, Build"
on:
push:
branches:
@@ -48,10 +48,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go_version: [1.21.x,1.20.x]
go_version: [1.21.x, 1.20.x]
steps:
- name: Install taglib
run: sudo apt-get install libtag1-dev
run: sudo apt-get install libtag1-dev ffmpeg
- name: Check out code into the Go module directory
uses: actions/checkout@v3
@@ -75,14 +75,14 @@ jobs:
name: Build JS bundle
runs-on: ubuntu-latest
env:
NODE_OPTIONS: '--max_old_space_size=4096'
NODE_OPTIONS: "--max_old_space_size=4096"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
cache: "npm"
cache-dependency-path: "**/package-lock.json"
- name: npm install dependencies
run: |