Skip to content

fix: add caching to changeset job and remove publish step #3

fix: add caching to changeset job and remove publish step

fix: add caching to changeset job and remove publish step #3

name: Changeset check
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check
run: yarn changeset:check