Merge pull request #660 from eclipse-thingweb/dependabot/npm_and_yarn… #1550
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Default CI & CD Pipeline | |
| on: | |
| push: | |
| paths-ignore: | |
| - "**.md" | |
| - "**.png" | |
| - "**.drawio" | |
| - "**.xlsx" | |
| pull_request: | |
| paths-ignore: | |
| - "**.md" | |
| - "**.png" | |
| - "**.drawio" | |
| - "**.xlsx" | |
| jobs: | |
| setup-and-test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [18.x, 20.x] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Use lerna | |
| run: npm install -g [email protected] | |
| - name: Bootstrap | |
| run: lerna bootstrap --no-ci | |
| - name: Test | |
| run: lerna run --ignore @thing-description-playground/web test --no-bail --stream | |
| - name: TD test | |
| run: node packages/cli/index.js -i examples/td/*/*.jsonld | |
| - name: TM test | |
| run: node packages/cli/index.js -t TM -i examples/tm/*/*.jsonld |