Skip to content

test: skip checking path #17

test: skip checking path

test: skip checking path #17

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
services:
deluge:
image: lscr.io/linuxserver/deluge:latest
env:
PUID: 1000
PGID: 1000
TZ: Etc/UTC
ports:
- '8112:8112'
- '6881:6881'
- '6881:6881/udp'
steps:
- uses: actions/checkout@v4
# https://github.com/wyvox/action-setup-pnpm
- uses: wyvox/action-setup-pnpm@v3
with: { node-version: 22, pnpm-version: 9 }
- name: lint
run: pnpm run lint
- name: test
run: pnpm run test:ci
- name: coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
publish:
needs: build
runs-on: ubuntu-latest
if: github.ref_name == 'master'
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# https://github.com/wyvox/action-setup-pnpm
- uses: wyvox/action-setup-pnpm@v3
with: { node-version: 22, pnpm-version: 9 }
- name: release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}