Skip to content

fix: U+FE0Fなどがそのまま絵文字としてパースされてしまう #670

fix: U+FE0Fなどがそのまま絵文字としてパースされてしまう

fix: U+FE0Fなどがそのまま絵文字としてパースされてしまう #670

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 16.5.0
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint