Skip to content

Commit

Permalink
ci: add name to workflows (#239)
Browse files Browse the repository at this point in the history
  • Loading branch information
uiolee authored Jan 12, 2024
1 parent b63ada1 commit 25dca28
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
on: [push, pull_request]
name: CI

on:
push:
branches:
- "master"
pull_request:

jobs:
linter:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: Pages

on:
push:
branches: [master]
Expand All @@ -10,11 +12,11 @@ jobs:
- name: Use Node.js v16
uses: actions/setup-node@v1
with:
node-version: '16'
node-version: "16"
- run: npm install
- name: Create Pages
run: npm run typedoc
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
publish_dir: ./docs

0 comments on commit 25dca28

Please sign in to comment.