mirror of
https://github.com/pion/webrtc.git
synced 2025-09-27 03:25:58 +08:00
20 lines
428 B
YAML
20 lines
428 B
YAML
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
|
|
# SPDX-License-Identifier: MIT
|
|
name: StandardJS
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- synchronize
|
|
jobs:
|
|
StandardJS:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: actions/setup-node@v5
|
|
with:
|
|
node-version: 22.x
|
|
- run: npm install standard
|
|
- run: npx standard
|