mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-17 02:29:37 +03:00
492b323613
* ci: update action runners * style: fix prettier * Update test.yml
48 lines
1.0 KiB
YAML
48 lines
1.0 KiB
YAML
name: Test & Build
|
|
on: [pull_request]
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-22.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-22.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
|