chore(deps-dev): bump ava from 6.1.2 to 6.1.3 #525
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: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: yarn | |
- run: yarn install | |
- run: yarn build | |
- run: yarn test | |
# Disabled due to error: | |
# ``` | |
# ✖ EINVALIDBRANCH A branch is invalid in the `branches` configuration. | |
# Each branch in the branches configuration (https://github.com/semantic-release/semantic-release/blob/master/docs/usage/configuration.md#branches) must be either a string, a regexp or an object with a name property. | |
# Your configuration for the problematic branch is ``. | |
# ``` | |
# - run: | | |
# yarn release --debug --dry-run --no-ci --branches main,${{ env.GITHUB_HEAD_REF }} | |
# env: | |
# GH_TOKEN: ${{ secrets.GH_PAT }} | |
# YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |