Bump core-js from 3.38.1 to 3.39.0 #1252
Workflow file for this run
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: End to end tests (Cypress) | |
on: [push] | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🔍 | |
uses: actions/checkout@v4 | |
- name: Set up node env | |
uses: actions/[email protected] | |
with: | |
node-version: 16 | |
# Install NPM dependencies, cache them correctly | |
# and run all Cypress End to End tests | |
- name: Run End to End tests 🧪 | |
uses: cypress-io/github-action@v6 | |
with: | |
build: npm run generate | |
start: npm start | |
component: false | |