mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-17 02:29:37 +03:00
8588cac3d7
commit23feaad53cAuthor: Jeff Sagal <sagalbot@gmail.com> Date: Sun Aug 1 11:45:49 2021 -0700 Update package.json commit69d11c7f58Author: Jeff Sagal <sagalbot@gmail.com> Date: Sun Aug 1 11:42:38 2021 -0700 update eslint config commit96819ebb91Author: Jeff Sagal <sagalbot@gmail.com> Date: Fri Jul 30 11:01:59 2021 -0700 build: add prettier and eslint (#1090) commitf702040f5bAuthor: semantic-release-bot <semantic-release-bot@martynus.net> Date: Fri Jul 30 00:38:55 2021 +0000 chore(🚀): 3.12.2 commit0f763f3ac4Author: Daniel Molnar <dm@tpwd.de> Date: Fri Jul 30 02:37:49 2021 +0200 fix: set !default for $vs-controls-deselect-text-shadow (#1468) - added missing `!default` for $vs-controls-deselect-text-shadow, which was the only one not having it - `!default` is necessary in order to be able override the variable commit335920b586Author: semantic-release-bot <semantic-release-bot@martynus.net> Date: Thu Jul 22 21:41:39 2021 +0000 chore(🚀): 3.12.1 commit5e1ac1f5ecAuthor: Jeff Sagal <sagalbot@gmail.com> Date: Thu Jul 22 14:40:29 2021 -0700 fix: no-options slot should use mutableLoading instead of loading prop (#1465)
48 lines
1.0 KiB
YAML
48 lines
1.0 KiB
YAML
name: Test & Build
|
|
on: [pull_request]
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12
|
|
|
|
- name: Install dependencies
|
|
run: yarn install --frozen-lockfile
|
|
|
|
- name: Test with Coverage
|
|
run: yarn test --coverage --coverageReporters=lcov
|
|
|
|
- name: ESLint
|
|
run: yarn eslint
|
|
|
|
- name: Report Coverage
|
|
uses: coverallsapp/github-action@master
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
build:
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
yarn install --frozen-lockfile
|
|
cd docs
|
|
yarn install --frozen-lockfile
|
|
|
|
- name: Build Dist
|
|
run: yarn build
|
|
|
|
- name: Bundlewatch
|
|
run: npx bundlewatch
|
|
|
|
- name: Build Docs
|
|
run: yarn build:docs
|