chore(deps): update dependency eslint-plugin-unicorn to v58 #107
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: Test Libvirt | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' | |
outputs: | |
release_created: ${{ steps.release.outputs.release_created }} | |
tag_name: ${{ steps.release.outputs.tag_name }} | |
steps: | |
- uses: googleapis/release-please-action@v4 | |
id: release | |
with: | |
release-type: node | |
build: | |
runs-on: ubuntu-latest | |
needs: [release-please] | |
# Run on all PRs, or when a release is created | |
if: ${{ github.event_name == 'pull_request' || needs.release-please.outputs.release_created }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.13" | |
- name: Cache APT Packages | |
uses: awalsh128/[email protected] | |
with: | |
packages: libvirt-dev | |
version: 1.0 | |
- name: Set Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v4 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('package.json') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: pnpm install | |
run: pnpm install --frozen-lockfile | |
- name: Build | |
run: pnpm run build | |
- name: test | |
run: pnpm run test | |
- name: Setup NPM Authentication | |
if: ${{ needs.release-please.outputs.release_created }} | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | |
- name: Publish to NPM | |
if: ${{ needs.release-please.outputs.release_created }} | |
run: pnpm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |