Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

chore(deps-dev): bump @wordpress/data from 9.5.0 to 9.10.0 #50

chore(deps-dev): bump @wordpress/data from 9.5.0 to 9.10.0

chore(deps-dev): bump @wordpress/data from 9.5.0 to 9.10.0 #50

Workflow file for this run

name: Release
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
permissions:
contents: write
jobs:
test-release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache node modules
uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install
run: yarn --ignore-scripts
env:
NPM_TOKEN: ${{ secrets.CI_NPM_TOKEN }}
- name: Check lint
run: yarn lint
- name: Build
run: yarn build
- name: Plugin zip
run: yarn plugin-zip
- name: Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}