Skip to content

build(deps): bump vite from 4.5.3 to 4.5.5 #130

build(deps): bump vite from 4.5.3 to 4.5.5

build(deps): bump vite from 4.5.3 to 4.5.5 #130

Workflow file for this run

name: test
# On every pull request, but only on push to master
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: volta-cli/action@2d68418f32546fd191eb666e232b321d5726484d # v4.1.1
with:
cache: "yarn"
- name: Install dependencies
run: |
yarn install
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
- name: Build code
run: |
yarn build
- name: Run tests
run: |
yarn test ci
- name: Run lint
run: |
yarn lint
- name: Build website
run: |
cd website
yarn install
yarn build
- name: Coveralls
uses: coverallsapp/github-action@09b709cf6a16e30b0808ba050c7a6e8a5ef13f8d # v1.2.5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}