Skip to content

fix(plugin): change yarn version in github workflow #4

fix(plugin): change yarn version in github workflow

fix(plugin): change yarn version in github workflow #4

Workflow file for this run

name: Publish to npm with Yarn
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20.9.0
- name: Install dependencies
run: npm ci
- name: Run tests with Yarn
run: npm test