Skip to content

chore(deps): update expresso #336

chore(deps): update expresso

chore(deps): update expresso #336

Workflow file for this run

name: Expresso
on:
push:
branches:
- master
pull_request:
paths:
- 'expresso/**'
workflow_dispatch: {}
defaults:
run:
working-directory: ./expresso
jobs:
expresso:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3.0.0
with:
version: 9.1.0
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm check:type
- run: pnpm test
- name: Publish
if: github.ref == 'refs/heads/master' || github.event_name == 'workflow_dispatch'
uses: botpress/gh-actions/publish-if-not-exists@master
with:
path: './expresso'
token: '${{ secrets.NPM_ACCESS_TOKEN }}'