Skip to content

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

chore(deps): update all non-major dependencies

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

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
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: yarn
- run: yarn install
- run: yarn dev:prepare
- run: yarn lint
- run: yarn build
# - run: yarn test
- name: Release Edge
if: |
github.event_name == 'push' &&
!contains(github.event.head_commit.message, '[skip-release]')
run: ./.github/scripts/release-edge.sh
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}