Skip to content

Commit

Permalink
0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
uros-5 committed Jun 11, 2024
1 parent 18f5b96 commit 522fc2d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/CI-nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ jobs:
# name: bindings-freebsd
# path: jinja-lsp-nodejs/${{ env.APP_NAME }}.*.node
# if-no-files-found: error

test-macOS-windows-binding:
defaults:
run:
Expand Down
3 changes: 3 additions & 0 deletions act_script.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

# act -j show -P macos-latest=sickcodes/docker-osx -P windows-latest=dockurr/windows
act --env-file .env -W .github/workflows/CI-nodejs.yaml -P macos-latest=sickcodes/docker-osx -P windows-latest=dockurr/windows
6 changes: 3 additions & 3 deletions jinja-lsp-nodejs/__test__/index.spec.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import test from 'ava'

import { sum } from '../index.js'
import { NodejsLspFiles } from '../index.js'

test('sum from native', (t) => {
t.is(sum(1, 2), 3)
test('main class', (t) => {
t.is(new NodejsLspFiles().getVariables("id", 11), null);
})

0 comments on commit 522fc2d

Please sign in to comment.