Skip to content

Commit

Permalink
unupdate node bullshit
Browse files Browse the repository at this point in the history
breaks mavedrom-cli
  • Loading branch information
jnk0le committed Jun 22, 2024
1 parent 340bf36 commit e0fb96b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
NPM_PACKAGE_FOLDER: ${{ github.workspace }}/dependencies
PDF_RESULT: XTeic.pdf
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
- name: Install Ubuntu packages
run: |
sudo apt-get update
Expand All @@ -35,24 +35,24 @@ jobs:
ruby-version: "3.2"
bundler-cache: true
# Node.js for wavedrom
- uses: actions/cache@v4
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v3
with:
node-version: '20'
node-version: '16'
- name: Install Node.js dependencies
run: npm install ${NPM_PACKAGE_FOLDER}
- name: Generate PDF
run: |
PATH=${PATH}:${BUNDLE_BIN}:$(npm bin) \
make ${PDF_RESULT}
- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: XTeic.pdf
path: ${{ env.PDF_RESULT }}
Expand Down

0 comments on commit e0fb96b

Please sign in to comment.