Bump @types/node from 22.10.5 to 22.10.6 #1484
Workflow file for this run
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: Self | |
on: [push, pull_request] | |
jobs: | |
main: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-20.04 | |
- ubuntu-22.04 | |
- ubuntu-24.04 | |
- ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- run: sudo apt-get install -y libfuse2 | |
if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-22.04' || matrix.os == 'ubuntu-24.04' | |
# ensure that a PR that doesn't update the dist actually uses the | |
# updated code when running the self step | |
- run: npm ci && npm run build && npm run package | |
if: github.event_name == 'pull_request' | |
- uses: ./ | |
id: self | |
with: | |
cache: false | |
install-libfuse2: false | |
- run: magick test.png test.gif | |
cache: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- run: sudo apt-get install -y libfuse2 | |
# ensure that a PR that doesn't update the dist actually uses the | |
# updated code when running the self step | |
- run: npm ci && npm run build && npm run package | |
if: github.event_name == 'pull_request' | |
- uses: ./ | |
id: self | |
with: | |
install-libfuse2: false | |
- run: magick test.png test.gif | |
libfuse2: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, ubuntu-20.04, ubuntu-22.04, ubuntu-24.04] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
# ensure that a PR that doesn't update the dist actually uses the | |
# updated code when running the self step | |
- run: npm ci && npm run build && npm run package | |
if: github.event_name == 'pull_request' | |
- uses: ./ | |
id: self | |
with: | |
cache: false | |
- run: magick test.png test.gif |