0
0
mirror of https://github.com/lipis/flag-icons.git synced 2024-11-21 18:38:57 +01:00

Add test action (#865)

This commit is contained in:
Lipis 2021-10-23 12:57:45 +03:00 committed by GitHub
parent 5c09671732
commit b8e5ff4583
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,17 @@
name: Tests
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Install and test
run: |
yarn --frozen-lockfile
yarn test