chore(deps): update dependency node to v20.18.0 #847
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: Coderadio-client ci | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- name: Checkout Source Files | |
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2 | |
- name: Install modules | |
run: npm ci | |
- name: Run ESLint | |
run: npm run lint | |
cypress-run: | |
name: Cypress Test | |
# Netlify deploys onto Ubuntu 20.04, so we should test on that os: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
browsers: [chrome, firefox] | |
node-version: [20.x] | |
steps: | |
- 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 | |
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2 | |
- name: Cypress run | |
uses: cypress-io/github-action@v2 | |
with: | |
browser: ${{ matrix.browsers }} | |
build: npm run build | |
start: npm start | |
wait-on: http://localhost:3001 | |
wait-on-timeout: 1200 | |
unit-test: | |
name: Unit Test | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- name: Checkout Source Files | |
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2 | |
- name: Install modules | |
run: npm ci | |
- name: Run tests | |
run: npm test |