[Snyk] Security upgrade nanoid from 1.3.4 to 3.3.8 #2696
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: Cypress | |
on: [push, pull_request] | |
jobs: | |
cypress-run: | |
name: Test | |
runs-on: ubuntu-18.04 | |
strategy: | |
matrix: | |
browsers: [chrome, firefox] | |
services: | |
mongodb: | |
image: mongo:3.6.19 | |
ports: | |
- 27017:27017 | |
steps: | |
# We use .npmrc to set the default version to 0, and prevents download during developement. | |
# This installs it specifically in the CI runs. | |
- name: Set Action Environment Variables | |
run: | | |
echo "CYPRESS_RECORD_KEY=${{ secrets.CYPRESS_RECORD_KEY }}" >> $GITHUB_ENV | |
echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> $GITHUB_ENV | |
echo "CYPRESS_INSTALL_BINARY=6.0.0" >> $GITHUB_ENV | |
- name: Checkout Source Files | |
uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Cache node modules | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-node-modules | |
with: | |
# npm cache files are stored in `~/.npm` on Linux/macOS | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Set freeCodeCamp Environment Variables | |
run: cp sample.env .env | |
- name: Install Dependencies | |
run: | | |
npm ci | |
npm run ensure-env | |
- name: Seed Database | |
run: npm run seed | |
- name: Cypress run | |
uses: cypress-io/github-action@v2 | |
with: | |
record: ${{ env.CYPRESS_RECORD_KEY != 0 }} | |
build: npm run build | |
# this should mirror the production build, but for now we're just using the dev | |
# server and gatsby serve instead (the npm script serve:client needs updating!) | |
start: npm start | |
wait-on: http://localhost:8000 | |
# the site builds in about 8 minutes, so there is currently 12 minutes of time | |
# left for testing. | |
wait-on-timeout: 1200 | |
config: baseUrl=http://localhost:8000 | |
browser: ${{ matrix.browsers }} | |
headless: true |