Skip to content

Dev-22-02-2024-v-1-1-6 #379

Dev-22-02-2024-v-1-1-6

Dev-22-02-2024-v-1-1-6 #379

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Intall Deps
run: npm ci
- name: ESLint
run: npm run lint
- name: Prettier
run: npm run pretty-quick-check-branch
- name: Test
run: npm test -- --watchAll=false
- name: Build
run: npm run build --if-present
# - name: E2E Test
# uses: cypress-io/github-action@v4
# with:
# browser: chrome
# build: npm run build:staging
# start: npm run serve
# wait-on: http://localhost:8000
# record: true
# env:
# CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}