feat: add vite missing base prop when doing the build #9
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: Pull Request | |
on: | |
pull_request: | |
branches: | |
- master | |
types: | |
- opened | |
- synchronize | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Reconfigure git to use HTTP authentication | |
run: > | |
git config --global url."https://github.com/".insteadOf "ssh://[email protected]/" | |
- name: node.js 20 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20.x | |
registry-url: https://registry.npmjs.org/ | |
cache: "npm" | |
- name: installing | |
run: npm ci | |
- name: linters | |
uses: wearerequired/lint-action@v1 | |
with: | |
prettier: true | |
prettier_extensions: ts,tsx,js,jsx,json,md,mdx,css | |
continue_on_error: false | |
github_token: ${{ secrets.GITHUB_TOKEN }} |