Skip to content

Commit

Permalink
Merge pull request #4 from rrk0804/workflow
Browse files Browse the repository at this point in the history
Creates workflow to build the app using Github Actions
  • Loading branch information
skycube19 authored Sep 9, 2024
2 parents 1ff2531 + 1b87640 commit 36edd5d
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: NodeJS

on:
push:
branches:
- '**'
pull_request:
branches:
- '**'

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Install Spicetify
continue-on-error: true
run: |
curl -fsSL https://raw.githubusercontent.com/spicetify/cli/main/install.sh | sh
- name: Update path
run: |
echo "/home/runner/.spicetify" >> $GITHUB_PATH
- name: npm install and build
run: |
echo $GITHUB_PATH
echo $PATH
npm install
npm run build

0 comments on commit 36edd5d

Please sign in to comment.