Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
qitas committed May 20, 2024
1 parent 1b4883f commit 93b4979
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 17 deletions.
12 changes: 0 additions & 12 deletions .github/auto-comment.yml

This file was deleted.

21 changes: 16 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ name: CI
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 3'
branches:
- main
paths:
- 'lib/**'
- 'lv_font_conv.js'

jobs:
test:
Expand All @@ -13,13 +16,21 @@ jobs:

strategy:
matrix:
node-version: [ '14' ]
node-version: [18, 20]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Cache node modules
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.OS }}-npm-cache-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-npm-cache-
- run: npm install
- run: npm test

0 comments on commit 93b4979

Please sign in to comment.