Upgraded @meeco/vc-api-sdk
version to `10.0.0-develop.2024100709323…
#1735
This file contains 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: Test | |
on: [push] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
- run: npm test | |
env: | |
CI: true | |
# We want to ensure there are no issues the demo builds as well | |
# - run: npx lerna run docs | |
# - uses: actions/upload-artifact@v2 | |
# with: | |
# name: Cypress Test Recording | |
# path: packages/style-kit/cypress/videos/ | |
# - uses: actions/upload-artifact@v2 | |
# if: failure() | |
# with: | |
# name: Cypress Test Screenshots | |
# path: packages/style-kit/cypress/screenshots/ | |
# - uses: actions/upload-artifact@v2 | |
# if: failure() | |
# with: | |
# name: Cypress Failure Diffs | |
# path: packages/style-kit/cypress/snapshots/ | |
# | |
# Ignore @meeco/cli as the required SDK version does not exist at this point | |
- run: npm run build -- --ignore @meeco/cli |