Skip to content

test: enable type check (#309) #268

test: enable type check (#309)

test: enable type check (#309) #268

Workflow file for this run

name: Release
on:
push:
branches:
- master
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release new version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: npm ci
- name: Create release pull request
uses: changesets/action@v1
permissions:

Check failure on line 27 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 27, Col: 9): Unexpected value 'permissions'
pull-requests: write
contents: write
with:
publish: npm run tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}