Skip to content

build(deps-dev): Bump prettier from 2.8.7 to 2.8.8 #219

build(deps-dev): Bump prettier from 2.8.7 to 2.8.8

build(deps-dev): Bump prettier from 2.8.7 to 2.8.8 #219

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
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 }}