Skip to content

build(deps-dev): bump vite from 7.3.1 to 7.3.2 (#239) #242

build(deps-dev): bump vite from 7.3.1 to 7.3.2 (#239)

build(deps-dev): bump vite from 7.3.1 to 7.3.2 (#239) #242

Workflow file for this run

name: 'CI'
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: 'Install Node'
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: 'Install Deps'
run: yarn install --immutable
- name: 'Build'
run: yarn build
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: 'Install Node'
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version-file: '.nvmrc'
- name: 'Install Deps'
run: yarn install --immutable
- name: 'Lint'
run: yarn lint
- name: 'Typecheck'
run: yarn typecheck
- name: 'Test'
run: yarn test