Skip to content

Commit

Permalink
ci: use a canonical name of Continuous Delivery
Browse files Browse the repository at this point in the history
  • Loading branch information
merlinnot authored Dec 4, 2019
1 parent f2b4162 commit e632d8f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 18 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Continuous Deployment
name: Continuous Delivery

on:
push:
Expand All @@ -12,14 +12,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Node.js with GitHub Package Registry
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 12
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
registry-url: 'https://npm.pkg.github.com'
scope: 'ridedott'
always-auth: true
- name: Cache dependencies
uses: actions/cache@v1
with:
Expand All @@ -30,8 +26,7 @@ jobs:
restore-keys: |
npm-
- name: Install dependencies
run:
npm ci --ignore-scripts --no-audit --prefer-offline --progress=false
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline
- name: Build
run: |
# Workaround https://github.com/zeit/ncc/issues/457.
Expand Down
15 changes: 5 additions & 10 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ jobs:
restore-keys: |
npm-
- name: Install dependencies
run:
npm ci --ignore-scripts --no-audit --prefer-offline --progress=false
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline
- name: Format
run: npm run format
lint:
Expand All @@ -57,8 +56,7 @@ jobs:
restore-keys: |
npm-
- name: Install dependencies
run:
npm ci --ignore-scripts --no-audit --prefer-offline --progress=false
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline
- name: Lint
run: npm run lint
spellcheck:
Expand All @@ -83,8 +81,7 @@ jobs:
restore-keys: |
npm-
- name: Install dependencies
run:
npm ci --ignore-scripts --no-audit --prefer-offline --progress=false
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline
- name: Spellcheck
run: npm run spellcheck
test:
Expand All @@ -109,8 +106,7 @@ jobs:
restore-keys: |
npm-
- name: Install dependencies
run:
npm ci --ignore-scripts --no-audit --prefer-offline --progress=false
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline
- name: Test
run: npm run test:ci
- name: Upload coverage to Coveralls
Expand Down Expand Up @@ -139,8 +135,7 @@ jobs:
restore-keys: |
npm-
- name: Install dependencies
run:
npm ci --ignore-scripts --no-audit --prefer-offline --progress=false
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline
- name: Types
run: npm run types
auto-merge:
Expand Down

0 comments on commit e632d8f

Please sign in to comment.