Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

chore(deps): update all non-major dependencies #991

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #991

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: corepack enable
- uses: actions/setup-node@v3
with:
node-version: "16"
cache: pnpm
- run: pnpm install
- run: pnpm lint
- run: pnpm test
- run: pnpm build
- name: Release Edge
if: |
github.event_name == 'push' &&
!contains(github.event.head_commit.message, '[skip-release]') &&
!contains(github.event.head_commit.message, 'chore') &&
!contains(github.event.head_commit.message, 'docs')
run: ./scripts/release-edge.sh
env:
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}