Skip to content

Chore: Upgrade all Dependencies and resolve any breaking changes #27

Chore: Upgrade all Dependencies and resolve any breaking changes

Chore: Upgrade all Dependencies and resolve any breaking changes #27

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
# Automatically cancel in-progress actions on the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build Packages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/[email protected]
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- if: ${{ steps.cache-node.outputs.cache-hit != 'true' }}
run: pnpm install
- uses: changesets/action@v1
if: ${{ github.event_name !== 'pull_request' }}

Check failure on line 29 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 29, Col: 13): Unexpected symbol: '='. Located at position 21 within expression: github.event_name !== 'pull_request'
with:
publish: pnpm changeset publish
commit: '[ci] release'
title: '[ci] release'
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}