We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9064ac commit ccbae06Copy full SHA for ccbae06
.github/workflows/test.yml
@@ -61,3 +61,24 @@ jobs:
61
- run: npm ci
62
- run: ./node_modules/.bin/cross-env NODE_ENV=ci npm run declarations:lint
63
- run: ./node_modules/.bin/cross-env NODE_ENV=ci npm run declarations:validate:schema
64
+
65
+ validate_metadata:
66
+ strategy:
67
+ matrix:
68
+ operating_system:
69
+ - ubuntu-22.04
70
+ - windows-latest
71
+ - macos-latest
72
+ fail-fast: false
73
74
+ runs-on: ${{ matrix.operating_system }}
75
76
+ steps:
77
+ - run: |
78
+ git config --global core.autocrlf false
79
+ - uses: actions/checkout@v4
80
+ - uses: actions/setup-node@v4
81
+ with:
82
+ node-version: 20
83
+ - run: npm ci
84
+ - run: ./node_modules/.bin/cross-env NODE_ENV=ci npm run metadata:validate
0 commit comments