Disable Cypress CI #2
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: CI | |
on: [push, pull_request] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- run: npm ci | |
- run: npm ci | |
working-directory: solid-server | |
- run: npm run lint | |
- run: npm run build | |
- run: npm run test | |
# TODO fix CI | |
# - run: npm run cy:test | |
# - name: Upload Cypress screenshots | |
# uses: actions/upload-artifact@v3 | |
# if: ${{ failure() }} | |
# with: | |
# name: cypress_screenshots | |
# path: cypress/screenshots |