Skip to content

fix: webxdc: CSP bypass #4769

fix: webxdc: CSP bypass

fix: webxdc: CSP bypass #4769

Workflow file for this run

name: Basic Code Checks
on:
push:
branches:
- main
pull_request:
paths-ignore:
- 'docs/**' # only trigger build if a file outside of /docs was changed
- 'README_ASSETS/**'
- '.prettierrc.yml'
- '.vscode/**'
jobs:
test:
name: Code Validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 20.x
uses: actions/setup-node@v1
with:
node-version: 20.x
- name: npm ci
run: |
npm ci
- name: preperation (generate code)
run: |
npm run build:shared:version
- name: Run all checks
run: |
npm run check
- name: Check for misplaced console.log statements
run: |
npm run test-log-conventions
- name: Misc tests
run: |
npm run test-misc