Bump vite-plugin-dts from 3.9.1 to 4.3.0 #619
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: crate-gc-admin | |
on: | |
- pull_request | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: https://registry.npmjs.org/ | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install | |
- name: Run linter | |
run: yarn lint | |
# We don't actually use the output, but it is useful to know if vite works. | |
# App build (useful for future needs) | |
- name: Build App | |
run: yarn build | |
# Component Library build | |
- name: Build Lib | |
run: yarn build-lib | |
# Run tests | |
- name: Run component tests | |
run: yarn test |