Skip to content

fix(deps): bump @vercel/nft from 0.26.5 to 0.27.0 #4448

fix(deps): bump @vercel/nft from 0.26.5 to 0.27.0

fix(deps): bump @vercel/nft from 0.26.5 to 0.27.0 #4448

Workflow file for this run

name: CI
on:
push:
branches:
- master
- next
pull_request:
branches:
- master
- next
permissions:
contents: read
jobs:
test-node:
runs-on: ubuntu-latest
strategy:
matrix:
os:
- ubuntu-latest
node-version:
- 20.13.1
- 22.1.0
steps:
- name: Dependencies
run: >
sudo apt-get update
sudo apt-get install ksh curl
wget
https://github.com/ThePoorPilot/pacman-utils/releases/download/5.2.2-3_2.31-0/pacman-utils_5.2.2-3_amd64.deb
sudo apt-get install -f ./pacman-utils_5.2.2-3_amd64.deb
- uses: actions/checkout@v4.1.5
- uses: actions/setup-node@v4.0.2
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache-dependency-path: package-lock.json
- run: npm ci
- run: npm run cover --if-present
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PKGBUILD_PUBLISH: ${{ secrets.PKGBUILD_PUBLISH }}
- name: Coveralls Parallel
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: run-${{ matrix.test_number }}
path-to-lcov: build/coverage/lcov.info
parallel: true
continue-on-error: true
release:
needs:
- test-node
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
steps:
- uses: actions/checkout@v4.1.5
- uses: actions/setup-node@v4.0.2
with:
node-version: 20.13.1
cache: npm
cache-dependency-path: package-lock.json
- run: npm ci
- run: npx semantic-release
env:
CI: "true"
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
finish:
needs:
- test-node
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: build/coverage/lcov.info
parallel-finished: true