8000 fixes sign · csfloat/extension@2dc031e · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Prevents Sending Pings for Escrow Trades #242

Prevents Sending Pings for Escrow Trades

Prevents Sending Pings for Escrow Trades #242

Workflow file for this run

name: Extension Lint
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Lint
run: |
npm install
npm run lint
npm run checkformat
0