Skip to content

Remove reusable workflow #12

Remove reusable workflow

Remove reusable workflow #12

Workflow file for this run

jobs:
publish:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: plugin
steps:
- uses: actions/checkout@v3
- name: test ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
cache-dependency-path: ./plugin/yarn.lock
- run: corepack enable
- run: yarn && yarn build
- run: yarn test
- run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}