Skip to content

Added an example of how to use get user decision for beforeunload #1919

Added an example of how to use get user decision for beforeunload

Added an example of how to use get user decision for beforeunload #1919

Workflow file for this run

name: Check Linting has been applied
on:
pull_request:
types: [opened, synchronize, reopened, edited]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node 18
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org
scope: '@openfin'
- name: Restore root node_modules from cache
id: node-cache
uses: actions/cache@v3
with:
path: node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm ci
- name: Run prettier
run: npm run prettier-check
- name: Run eslint
run: npm run eslint
- name: Run markdownlint
run: npm run markdownlint