Skip to content

Commit 2b508b9

Browse files
committed
chore: upgrading dependencies and types
Signed-off-by: Pawel Psztyc <jarrodek@gmail.com>
1 parent 00d6a70 commit 2b508b9

24 files changed

+6434
-7490
lines changed

.github/workflows/tests.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: tests
2+
3+
env:
4+
FORCE_COLOR: 1
5+
6+
on:
7+
push:
8+
pull_request:
9+
branches:
10+
- stage
11+
- master
12+
jobs:
13+
test_linux:
14+
name: ${{ matrix.os }} (${{ matrix.browser }})
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
os: [ubuntu-18.04, ubuntu-20.04]
19+
runs-on: ${{ matrix.os }}
20+
steps:
21+
- uses: actions/checkout@v2
22+
- uses: actions/setup-node@v1
23+
with:
24+
node-version: 14
25+
- uses: microsoft/playwright-github-action@v1
26+
- name: Install dependencies
27+
run: npm ci
28+
- name: Run tests
29+
run: npm test
30+
# test_win:
31+
# name: "Windows"
32+
# strategy:
33+
# fail-fast: false
34+
# runs-on: windows-latest
35+
# steps:
36+
# - uses: actions/checkout@v2
37+
# - uses: actions/setup-node@v1
38+
# with:
39+
# node-version: 14
40+
# - uses: microsoft/playwright-github-action@v1
41+
# - name: Install dependencies
42+
# run: npm ci
43+
# - name: Run tests
44+
# run: npm test

.npmignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ coverage/
22
test/
33
demo/
44
CONTRIBUTING.md
5-
.travis.yml
65
polymer.json
76
karma.*
87
.*
8+
web-test-runner.config.mjs
9+
es-dev-server.config.js
10+
polymer.json

.travis.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"cSpell.words": [
3+
"Arrable",
4+
"Petstore",
5+
"RAML's",
6+
"Unionable",
7+
"fietype",
8+
"isarray",
9+
"isenum",
10+
"isobject",
11+
"isunion",
12+
"xone"
13+
]
14+
}

api-type-document.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ApiTypeDocument } from './src/ApiTypeDocument.js';
1+
import { ApiTypeDocument } from './src/ApiTypeDocument';
22

33
declare global {
44
interface HTMLElementTagNameMap {

0 commit comments

Comments
 (0)