Skip to content

chore(deps): Bump @strapi/helper-plugin from 4.12.5 to 4.19.1 #343

chore(deps): Bump @strapi/helper-plugin from 4.12.5 to 4.19.1

chore(deps): Bump @strapi/helper-plugin from 4.12.5 to 4.19.1 #343

Workflow file for this run

name: Test
on:
push:
pull_request:
types:
- opened
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js/16
uses: actions/setup-node@v3
with:
node-version: 16
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn
- name: Test
run: yarn test