mirror of
https://github.com/SomboChea/ui
synced 2024-11-05 22:24:27 +07:00
23 lines
371 B
YAML
23 lines
371 B
YAML
name: Node CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Use Node.js 10.x
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
version: 10.x
|
|
- name: Use Yarn 1.17.2
|
|
run: |
|
|
npm install -g yarn@1.17.2
|
|
- name: yarn build
|
|
run: |
|
|
yarn install
|
|
yarn build
|