Skip to content

Commit

Permalink
Merge pull request #16 from lisb/feature/styled-note
Browse files Browse the repository at this point in the history
Feature/styled note
  • Loading branch information
krdlab authored Oct 11, 2024
2 parents 1b655d5 + 85a39ed commit 0ad13a3
Show file tree
Hide file tree
Showing 7 changed files with 1,702 additions and 4,036 deletions.
34 changes: 26 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,44 @@ name: build and test

on:
push:
branches: [ master ]
branches:
- master
pull_request:
branches: [ master ]
branches:
- master

permissions:
contents: read

defaults:
run:
shell: bash

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20]
node:
- 18.x
- 20.x
- 22.x
os:
- ubuntu-latest
- windows-latest
- macos-latest

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
cache: npm
cache-dependency-path: '**/package-lock.json'

- run: |
- name: Run tests
run: |
npm ci
npm test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ node_modules

# others
/test-types/**/*.js
*.tgz
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
.github/
test-types/
*.tgz
Loading

0 comments on commit 0ad13a3

Please sign in to comment.