mirror of
https://github.com/ikatyang/emoji-cheat-sheet.git
synced 2025-04-08 16:23:42 +02:00
For more information, see https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
25 lines
388 B
YAML
25 lines
388 B
YAML
name: Lint
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v2-beta
|
|
with:
|
|
node-version: "16"
|
|
|
|
- name: Install Dependencies
|
|
run: yarn
|
|
|
|
- name: Lint
|
|
run: yarn lint
|