Skip to content

dont allow @ in user, and parse issue #31

dont allow @ in user, and parse issue

dont allow @ in user, and parse issue #31

Workflow file for this run

name: Style Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
style-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20' # Set this to the node version you are using
- name: Install dependencies
run: npm install
- name: Run style check
run: npm run style:check