mirror of
https://github.com/tiennm99/is-a-dev.git
synced 2026-05-16 06:58:50 +00:00
22 lines
356 B
YAML
22 lines
356 B
YAML
name: validation
|
|
on: [push]
|
|
|
|
jobs:
|
|
test:
|
|
name: Validation
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Use Node.js 14.x
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 14.x
|
|
|
|
- name: Install dependencies
|
|
run: yarn
|
|
|
|
- name: Test and verify domains
|
|
run: CI=true yarn test
|