chore: check node@14 on pipeline, #728 (#731)

This commit is contained in:
Jun Yang
2024-08-16 00:55:14 +08:00
committed by GitHub
parent 6fb707f9c4
commit c6a6ef1a1f
6 changed files with 47 additions and 5 deletions
+1
View File
@@ -23,6 +23,7 @@
"prefer-const": 2,
"no-unused-vars": "off",
"indent": "off",
"no-mixed-operators": "off",
"no-dupe-class-members": "off",
"no-useless-constructor": "off",
"@typescript-eslint/indent": ["error", 2],
+13 -2
View File
@@ -5,8 +5,19 @@ jobs:
name: Test
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
timezone: [Etc/GMT, Asia/Shanghai, America/New_York]
node-version: [22]
include:
- os: macos-latest
timezone: America/New_York
node-versoin: 22
- os: ubuntu-latest
timezone: Etc/GMT
node-version: 16
- os: ubuntu-latest
timezone: Asia/Shanghai
node-version: 14
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
@@ -16,7 +27,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Download artifacts
+7
View File
@@ -50,6 +50,10 @@ const browserStream = {
delimiters: ['', ''],
'./streamed-emitter': '../build/streamed-emitter-browser'
}
const browserPerf = {
include: ['./src/context/context.ts', './src/render/render.ts'],
'node:perf_hooks': '../build/perf_hooks-browser'
}
const esmRequire = {
include: './src/fs/node.ts',
delimiters: ['', ''],
@@ -95,6 +99,7 @@ const browserEsm = {
versionInjection,
replace(browserFS),
replace(browserStream),
replace(browserPerf),
typescript(tsconfig('es6'))
],
treeshake,
@@ -113,6 +118,7 @@ const browserUmd = {
versionInjection,
replace(browserFS),
replace(browserStream),
replace(browserPerf),
typescript(tsconfig('es5'))
],
treeshake,
@@ -131,6 +137,7 @@ const browserMin = {
versionInjection,
replace(browserFS),
replace(browserStream),
replace(browserPerf),
typescript(tsconfig('es5')),
uglify()
],
+5
View File
@@ -0,0 +1,5 @@
const polyfill = {
now: () => Date.now()
}
export const performance = typeof window === 'object' && window.performance || polyfill
+19
View File
@@ -0,0 +1,19 @@
import { Parser } from './parser'
import { Liquid, TokenKind } from '..'
describe('Parser', () => {
it('should coerce input to string', () => {
const parser = new Parser(new Liquid())
const templates = parser.parse({} as any)
expect(templates.length).toEqual(1)
expect(templates[0]).toMatchObject({
str: '[object Object]',
token: {
kind: TokenKind.HTML,
input: '[object Object]',
begin: 0,
end: 15
}
})
})
})
+2 -3
View File
@@ -1,8 +1,7 @@
import { Liquid } from '../../src/liquid'
import { Drop } from '../../src/drop/drop'
import { Drop, Liquid } from '../..'
class SettingsDrop extends Drop {
private foo = 'FOO'
public foo = 'FOO'
public bar () {
return 'BAR'
}