Skip to content

chore(prettierrc): cleanup #7

chore(prettierrc): cleanup

chore(prettierrc): cleanup #7

Workflow file for this run

name: Release
on:
push:
branches:
- main
permissions:
contents: write
issues: write
pull-requests: write
concurrency:
group: Release
cancel-in-progress: false
jobs:
check-formatting:
uses: ./.github/workflows/check-formatting.yml
lint:
uses: ./.github/workflows/lint.yml

Check failure on line 21 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yaml" -> "./.github/workflows/lint.yml" : failed to fetch workflow: workflow was not found.
check-dependencies:
uses: ./.github/workflows/check-dependencies.yml
check-spelling:
uses: ./.github/workflows/check-spelling.yml
test:
uses: ./.github/workflows/test.yml
npm:
needs:
- lint
- check-dependencies
- check-spelling
- check-formatting
- test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- uses: ./.github/actions/prepare
- name: Build
run: pnpm run build
- name: Release
env:
GITHUB_TOKEN: ${{ github.token }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > ~/.npmrc
npm publish --access public