Skip to content

Simplifying development process. Attaching sdk info the window. Using packaged files instead of pointing at src #26

Simplifying development process. Attaching sdk info the window. Using packaged files instead of pointing at src

Simplifying development process. Attaching sdk info the window. Using packaged files instead of pointing at src #26

Workflow file for this run

name: Lint
on:
pull_request:
jobs:
Lint-Prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 20
- uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm install
- run: npm run prettier -- --check
- run: npm run lint