Skip to content

feat(notes): link note to specific day via temporal prefix (#232) #109

feat(notes): link note to specific day via temporal prefix (#232)

feat(notes): link note to specific day via temporal prefix (#232) #109

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
- develop
pull_request:
jobs:
lint-build-test:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
node-version: ["20", "22"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Build extension
run: npm run compile
- name: Build tests
run: npm run compile-tests
- name: Run extension tests
run: xvfb-run -a npm test