Skip to content

use submodules, add makefile, use npm instead of yarn, add workflow #1

use submodules, add makefile, use npm instead of yarn, add workflow

use submodules, add makefile, use npm instead of yarn, add workflow #1

Workflow file for this run

name: Update
on:
pull_request:
push:
branches:
- main
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
with:
ref: ${{ github.head_ref }}
submodules: "true"
token: ${{ secrets.APPARITOR_GITHUB_TOKEN }}
- name: Setup Node
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444
- name: Generate
run: make generate
- name: Commit
if: github.event.pull_request.user.login == 'dependabot[bot]'
uses: devops-infra/action-commit-push@e6a24fad602d1f92e46432c89a7e0c7fdd45d62d
with:
github_token: ${{ secrets.APPARITOR_GITHUB_TOKEN }}
commit_message: "ci: update"
build:
runs-on: ubuntu-latest
needs: update
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
with:
ref: ${{ github.head_ref }}
- name: Setup Node
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444
- name: Build
run: make build