Add support for cloud interop, window state in page saves and better builds #1851
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: 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 |