crawler-user-agents 1.0.122 → 1.0.124

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,25 @@
1
+ # run all tests for crawler-user-agents (python/php)
2
+
3
+ name: CI validation
4
+
5
+ on:
6
+ # https://stackoverflow.com/questions/64635032/github-actions-run-on-push-to-all-branches
7
+ push:
8
+ branches:
9
+ - '**'
10
+ pull_request:
11
+ branches:
12
+ - master
13
+
14
+ jobs:
15
+ build:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - uses: actions/setup-node@v4
20
+ with:
21
+ node-version: 20
22
+ - run: pip3 install jsonschema pytest
23
+ - run: py.test -vv
24
+ - run: python3 validate.py
25
+ - run: php validate.php
@@ -15,7 +15,7 @@ jobs:
15
15
  - uses: actions/checkout@v4
16
16
  - uses: actions/setup-node@v4
17
17
  with:
18
- node-version: 16
18
+ node-version: 20
19
19
  - run: pip3 install jsonschema pytest
20
20
  - run: py.test -vv
21
21
  - run: python3 validate.py
@@ -33,7 +33,7 @@ jobs:
33
33
  - uses: actions/checkout@v4
34
34
  - uses: actions/setup-node@v4
35
35
  with:
36
- node-version: 16
36
+ node-version: 20
37
37
  registry-url: https://registry.npmjs.org/
38
38
  - run: npm install pacote@11.1.11
39
39
  - run: git checkout .
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crawler-user-agents",
3
- "version": "1.0.122",
3
+ "version": "1.0.124",
4
4
  "main": "crawler-user-agents.json",
5
5
  "typings": "./index.d.ts",
6
6
  "author": "Martin Monperrus <martin.monperrus@gnieh.org>",