-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,12 +40,12 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node: [ '0.12', '4', '6', '8', '10', '12', '14' ] # Major releases as described in https://nodejs.org/en/download/releases/ | ||
node: [ '10', '12', '14' ] # Major releases as described in https://nodejs.org/en/download/releases/ | ||
name: Node ${{ matrix.node }} sample | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
- name: Setup node | ||
uses: actions/setup-node@v1 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- run: npm install | ||
|
@@ -65,7 +65,7 @@ jobs: | |
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.8 | ||
- run: npm ci | ||
- run: npm ci | ||
- name: Build typescript files | ||
run: npm run build | ||
- name: Download csv databases | ||
|
@@ -88,7 +88,7 @@ jobs: | |
echo "::set-output name=changed::true" | ||
git config user.email "[email protected]" | ||
git config user.name "$GITHUB_ACTOR" | ||
npm version patch | ||
npm version patch | ||
else | ||
echo "::set-output name=changed::false" | ||
fi | ||
|