chore(deps): bump sass from 1.75.0 to 1.79.4 #385
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: Tests | |
on: | |
push: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
cypress-e2e-and-component: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Install NPM dependencies, cache them correctly | |
# and run all Cypress tests | |
- name: Run E2E tests | |
uses: cypress-io/github-action@v6 | |
with: | |
build: npm run build | |
start: npm start | |
- name: Run Component Testing | |
uses: cypress-io/github-action@v6 | |
with: | |
# we have already installed everything | |
install: false | |
component: true |