Skip to content

8767 - Add a callback function setting in notification #9113

8767 - Add a callback function setting in notification

8767 - Add a callback function setting in notification #9113

Workflow file for this run

# This workflow will do a clean install of node dependencies,
# 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: CI
on:
pull_request:
branches:
- "*"
- "*/*"
- "**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache multiple paths
uses: actions/cache@v2
with:
path: node_modules
key: enterprise-1024
- name: Setup timezone
uses: szenius/[email protected]
with:
timezoneMacos: "America/New_York"
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run Lint Checks
run: npm run lint
- name: Install Browsers
run: npx playwright install --with-deps
- name: Run Tests
run: npx percy exec -- npm run test:ci
env:
NODE_OPTIONS: "--max-old-space-size=8192"
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Dump job context
env:
JOB_CONTEXT: ${{ toJson(job) }}
run: echo "$JOB_CONTEXT"
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}