Skip to content

Commit 0108133

Browse files
authored
feat: Cancun support
2 parents 5d96e74 + e6d0045 commit 0108133

File tree

9 files changed

+3408
-668
lines changed

9 files changed

+3408
-668
lines changed

.eslintrc.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
es6: true,
5+
node: true
6+
},
7+
parserOptions: {
8+
ecmaVersion: 2015,
9+
sourceType: "module"
10+
},
11+
// no rules, this file exists only to lint the grammars and check
12+
// that no ES2018 or newer syntax has crept in by accident
13+
rules: {}
14+
};

.github/workflows/test.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
name: Build and Test
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
68

79
jobs:
810
build:
911
runs-on: ubuntu-latest
1012
steps:
11-
- uses: actions/checkout@v1
12-
- uses: actions/setup-node@v1
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
1315
with:
14-
node-version: 12.x
15-
- name: npm install and build
16-
run: npm ci
17-
- name: test
18-
run: npm test
16+
node-version: 20
17+
- run: npm ci
18+
- run: npm test
19+
20+

0 commit comments

Comments
 (0)