ci.yml 500 字节
Newer Older
C
colynn.liu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
name: Compile

on:
  push:
    branches:
      - contributing-help

jobs:
  build-deploy:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout Repo
        uses: actions/checkout@master
        with:
          submodules: true
      - name: Buile atomci backend
        run: |
          make build
      - name: Build frontend page
        uses: actions/setup-node@v2
        with:
          node-version: '12'
        run: |
          cd web
          yarn install
          yarn run build