Skip to content

Applying coding conventions #243

Applying coding conventions

Applying coding conventions #243

Workflow file for this run

name: Webview Tests
on: [push, pull_request]
permissions:
contents: read
pull-requests: read
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: '16'
check-latest: true
- name: Install project
run: npm i
- name: Lint
run: npm run lint
- name: Format
run: npm run format
- name: Run tests
env:
CI: true
run: npm test -- --coverage