Skip to content

chore(deps-dev): Bump eslint-plugin-svelte from 2.46.0 to 2.46.1 #2346

chore(deps-dev): Bump eslint-plugin-svelte from 2.46.0 to 2.46.1

chore(deps-dev): Bump eslint-plugin-svelte from 2.46.0 to 2.46.1 #2346

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [21.x]
steps:
- uses: actions/checkout@v3
- name: Install surrealdb
run: curl -sSf https://install.surrealdb.com | sh
- name: Start Database
run: screen -AmdS surreal surreal start --user root --pass pass -A --auth memory
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm i
- name: Building project
run: pnpm run --if-present build