2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-29 05:14:04 +03:00

deps: upgrade dependencies (#1867)

* update deps

* Update package.json

* update deps and workflows

* refactor workflows

* always checkout

* Update action.yml

* Update action.yml

* Update action.yml

* bump

* Update action.yml

* Update action.yml

* update workflow

* fix pnpm issues

* upgrade eslint

* complete workflows

* Update eslint.config.ts

* upgrade tailwind

* Update .gitignore

* upgrade nuxt content separately
This commit is contained in:
Jeff Sagal
2025-03-16 10:13:20 -07:00
committed by GitHub
parent faf8d6c655
commit 06d9a373f2
22 changed files with 3824 additions and 3545 deletions
+7 -16
View File
@@ -1,34 +1,25 @@
name: Release
on:
push:
branches:
- master
- next
- beta
jobs:
release:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
- uses: actions/cache@v3
id: yarn-cache
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-yarn-
- uses: actions/checkout@v4
- name: Install dependencies
run: yarn install --frozen-lockfile
- uses: ./.github/actions/install
- name: Test
run: yarn test
run: pnpm run test
- name: Build
run: yarn build
run: pnpm run build
- name: Release
env:
+17 -36
View File
@@ -1,61 +1,42 @@
name: Test & Build
on: [pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
test:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
- uses: actions/cache@v3
id: yarn-cache
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-yarn-
- uses: actions/checkout@v4
- name: Install dependencies
run: yarn install --frozen-lockfile
- uses: ./.github/actions/install
- name: Test with Coverage
run: yarn coverage
run: pnpm run coverage
- name: ESLint
run: yarn eslint
run: pnpm run lint
- name: Report Coverage
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
- uses: actions/cache@v3
id: yarn-cache
with:
path: '**/node_modules'
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-yarn-
- uses: actions/checkout@v4
- name: Install dependencies
run: yarn install --frozen-lockfile --prefer-offline
- uses: ./.github/actions/install
- name: Build Dist
run: yarn build
run: pnpm run build
- name: Bundlewatch
run: npx bundlewatch
- name: Build Docs
run: |
cd docs
yarn install --frozen-lockfile --prefer-offline
yarn build
run: pnpm run build:docs