crawler-user-agents 1.0.123 → 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crawler-user-agents",
3
- "version": "1.0.123",
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>",