1
0
mirror of https://github.com/ikatyang/emoji-cheat-sheet.git synced 2026-02-06 07:05:18 +01:00

chore: use github actions

This commit is contained in:
Ika
2020-07-07 21:50:29 +08:00
parent 7f6a3e40ee
commit e29c784610
6 changed files with 116 additions and 18 deletions

24
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
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