Skip to content

Use SQLite for data storage #234

Use SQLite for data storage

Use SQLite for data storage #234

Workflow file for this run

name: "Lint & Test"
on:
pull_request:
push:
branches:
- main
jobs:
lint:
name: Lint & Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Read .nvmrc
run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_OUTPUT
id: nvm
- name: Use Node.js ${{ steps.nvm.outputs.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
- name: Install dependencies
run: |
./script/setup
- name: Run lint & test
run: |
./script/test