Merge pull request #174 from JakubBialoskorski/snyk-upgrade-1d0a3e583… #218
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: Node.js CI | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: npm ci | |
- name: Build the project | |
run: npm run build | |
- name: Start server | |
run: npx serve@latest out -l 3000 & | |
env: | |
CI: true | |
- name: Wait for server | |
run: npx wait-on http://127.0.0.1:3000 --timeout 60000 | |
- name: Check server response | |
run: curl -v http://127.0.0.1:3000 | |
- name: Cypress run | |
uses: cypress-io/github-action@v5 | |
build: | |
# Tests needs to pass before deploying further | |
needs: cypress-run | |
runs-on: ubuntu-latest | |
steps: | |
# https://github.com/actions/checkout | |
- uses: actions/checkout@v3 | |
# a standard step for GitHub actions on Node | |
# https://github.com/actions/setup-node | |
- uses: actions/setup-node@v3 | |
with: | |
# update the Node version to meet your needs | |
node-version: 18 | |
cache: npm | |
- name: Build | |
run: | | |
npm ci | |
npm run build | |
touch out/.nojekyll | |
- name: Deploy | |
# https://github.com/JamesIves/github-pages-deploy-action | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: out |