Skip to content

Commit

Permalink
Old nodejs versions removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Doc999tor committed Sep 30, 2022
1 parent a5d3c6b commit 3dc55c3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 3dc55c3

Please sign in to comment.