Skip to content

Commit

Permalink
chore: build on push
Browse files Browse the repository at this point in the history
  • Loading branch information
stfsy committed Jan 3, 2022
1 parent ca63a2a commit af41687
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: build
on: push

jobs:
build:
timeout-minutes: 10
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]

steps:
- name: Git checkout
uses: actions/checkout@master

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.5.0
with:
node-version: ${{ matrix.node-version }}

- run: npm ci

- name: Build
run: npm run docs:build

0 comments on commit af41687

Please sign in to comment.