Skip to content

feat(nginx): allow directive spec without config #20

feat(nginx): allow directive spec without config

feat(nginx): allow directive spec without config #20

Workflow file for this run

name: CI
on:
push:
branches:
- main
env:
NODE_VERSION: 20
PNPM_VERSION: 9
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm
- run: pnpm install
- run: pnpm build
- run: pnpm test
- uses: changesets/action@v1
with:
commit: "chore: update versions"
title: Update versions
publish: pnpm publish -r --no-git-checks
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}