Adds source ~/.basrhc #16
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: 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: | | |
no | curl -fsSL https://raw.githubusercontent.com/spicetify/cli/main/install.sh | sh | |
- name: npm install and build | |
run: | | |
echo 'export SPICETIFY_INSTALL="/home/runner/.spicetify"' >> ~/.basrhc | |
echo 'export PATH="$PATH:/home/runner/.spicetify"' >> ~/.bashrc | |
source ~/.basrhc | |
npm install | |
npm run build |