font-awesome-animation/.github/workflows/build.yml
Louis Lin 1d7fbf001b build: change CI
- use NPM scripts instead of Grunt
- use Github actions instead of Travis
- remove dist from versioning
- remove demo
- remove bower
2021-01-21 20:25:02 +01:00

28 lines
488 B
YAML

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node & install dependencies
uses: actions/setup-node@v1
with:
node-version: '12.x'
run: npm install
- name: Run a one-line script
run: npm run build