Skip to content

chore(deps): update dependency semantic-release to v24 #5490

chore(deps): update dependency semantic-release to v24

chore(deps): update dependency semantic-release to v24 #5490

Workflow file for this run

name: CI
on: push
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Cache dependencies
uses: actions/cache@v4
id: yarn-cache
with:
path: |
**/node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn --frozen-lockfile
- name: Run ESLint
run: yarn run lint
- name: Install vue3
run: yarn add vue -W
- name: Run Jest vue3
run: yarn run test:v3
- name: Install vue2
run: yarn add vue@2 -W
- name: Run Jest vue2
run: yarn run test:v2