1
0
mirror of https://github.com/ikatyang/emoji-cheat-sheet.git synced 2024-11-22 18:33:50 +01:00
emoji-cheat-sheet/.github/workflows/test.yml

25 lines
393 B
YAML
Raw Normal View History

2020-07-07 15:50:29 +02:00
name: Test
on:
- push
- pull_request
jobs:
test:
name: Test
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: "12"
- name: Install Dependencies
run: yarn
- name: Test
run: yarn test --ci