Skip to content

build(deps-dev): bump vitest from 1.5.0 to 1.5.1 #21

build(deps-dev): bump vitest from 1.5.0 to 1.5.1

build(deps-dev): bump vitest from 1.5.0 to 1.5.1 #21

Workflow file for this run

name: Build and test
on:
pull_request:
branches: ["main"]
concurrency:
group: code-check-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
packages: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Read node and npm versions from package.json
uses: skjnldsv/read-package-engines-version-actions@v3
id: package-engines-versions
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ steps.package-engines-versions.outputs.nodeVersion }}
registry-url: "https://npm.pkg.github.com"
- name: Install Dependencies
run: npm ci
env:
GPR_PRIVATE_READ_TOKEN: ${{ secrets.GPR_PRIVATE_READ_TOKEN }}
- name: Tests
run: npm run ci-test
- name: Formatting
run: npm run prettier:check
- name: Lint
run: npm run lint