Skip to content

Commit

Permalink
update(CI): polish steps name up
Browse files Browse the repository at this point in the history
  • Loading branch information
sabertazimi committed Jul 5, 2021
1 parent 22f5771 commit a313f47
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,24 @@ jobs:
name: Node ${{ matrix.node-version }} - ${{ matrix.architecture }} on ${{ matrix.os }}

steps:
- name: Checkout
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: true
fetch-depth: 1
- name: Setup
- name: Setup Node environment
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
architecture: ${{ matrix.architecture }}
registry-url: https://registry.npmjs.org/
cache: 'npm'
- name: Installation and Building Work
- name: Installation and building work
run: |
npm ci
npm run lint
npm run build
- name: Archive Production Artifacts
- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
name: dist
Expand All @@ -55,12 +55,12 @@ jobs:
needs: build

steps:
- name: Download Production Artifacts
- name: Download production artifacts
uses: actions/download-artifact@v2
with:
name: dist
path: build
- name: List Production Artifacts
- name: List production artifacts
run: ls -R
working-directory: .
- name: Deploy to Github Pages
Expand Down

0 comments on commit a313f47

Please sign in to comment.