Skip to content

Commit 05ebe7e

Browse files
committed
Apply code suggestions from other TS PRs
1 parent e5c350c commit 05ebe7e

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

.github/workflows/nodejs.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,8 @@ name: Node CI
33
on: push
44
jobs:
55
build:
6-
runs-on: ${{ matrix.os }}
7-
strategy:
8-
fail-fast: false
9-
matrix:
10-
os: [ubuntu-latest, windows-latest, macos-latest]
6+
runs-on: ubuntu-latest
117
steps:
12-
- name: Set git to not change EoL
13-
run: |
14-
git config --global core.autocrlf false
158
- uses: actions/checkout@v2
169
- name: Use Node.js 12.x
1710
uses: actions/setup-node@v1
@@ -20,7 +13,7 @@ jobs:
2013
- name: npm install, build, and test
2114
run: |
2215
npm install
23-
npm run build --if-present
16+
npm run build
2417
npm test
2518
env:
2619
CI: true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ $ npm install --save @github/auto-check-element
1212

1313
### Script
1414

15-
Import as ES modules:
15+
Import as a modules:
1616

1717
```js
1818
import '@github/auto-check-element'

0 commit comments

Comments
 (0)