Skip to content

Commit 2cf0cab

Browse files
authored
1.0.0
- Initial version.
1 parent c42f831 commit 2cf0cab

File tree

4 files changed

+7
-0
lines changed

4 files changed

+7
-0
lines changed

.github/workflows/.ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
on: push
23
name: CI
34
jobs:
@@ -6,13 +7,16 @@ jobs:
67
strategy:
78
matrix:
89
node-version: [10.x, 12.x, 14.x]
10+
php-versions: ['7.3', '7.4']
911
os: [ubuntu-latest, macos-latest, windows-latest]
1012
steps:
1113
- uses: actions/checkout@v1
1214
- name: Use Node.js ${{ matrix.node-version }}
1315
uses: actions/setup-node@v1
1416
with:
1517
node-version: ${{ matrix.node-version }}
18+
- name: Setup PHP Action
19+
uses: shivammathur/setup-php@2.2.2
1620
- run: npm ci
1721
- run: npm run lint
1822
- run: npm run coverage

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
## 1.0.0
88

99
- Initial version.
10+

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ If you are a maintainer of this module, please follow the following release proc
1717
- Open and merge a pull request with those changes.
1818
- Tag the merge commit as the a new release version number.
1919
- Publish commit to npm.
20+

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,4 @@ app.get('/', (req, res) => {
6565
})
6666
})
6767
```
68+

0 commit comments

Comments
 (0)