mirror of
https://github.com/ipfs/awesome-ipfs.git
synced 2024-10-01 01:35:37 -04:00
b7c69ac160
Co-Authored-By: Marcin Rataj <lidel@lidel.org>
32 lines
653 B
YAML
32 lines
653 B
YAML
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@v2.1.0
|
|
- uses: actions/setup-node@v1.4.1
|
|
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@v0.5.0
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|