1
0
Fork 0
mirror of https://github.com/ipfs/awesome-ipfs.git synced 2024-11-20 11:28:35 -05:00

feat: auto build without run build locally

This commit is contained in:
bluelovers 2020-04-02 14:31:07 +08:00
parent c8e546d4b0
commit 29a9c89d0e

31
.github/workflows/data.yml vendored Normal file
View file

@ -0,0 +1,31 @@
name: auto build data
on:
push:
branches:
- master
paths:
- data/**
jobs:
build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: 13
- name: build
# env:
run: |
npm --version
node --version
npm ci
npm run lint
npm run build
- name: Push changes
if: success()
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}