Skip to content

Commit

Permalink
chore: removed travis
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Aug 6, 2024
1 parent 35fff8c commit 43349c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
timeout-minutes: 10
strategy:
matrix:
node-version: [14]
node-version: [12]
runs-on: ubuntu-latest
container: node:${{ matrix.node-version }}-buster
steps:
Expand All @@ -21,6 +21,8 @@ jobs:
run: npm install
- name: Install package (development)
run: npm install --only=dev
- name: Build package
run: npm run build
- name: Verify Javascript code linting
run: npm run lint
- name: Run unit tests
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
timeout-minutes: 10
strategy:
matrix:
node-version: [14, 15, 16, 17, 18, 19, 20]
node-version: [12, 13, 14, 15, 16, 17, 18, 19, 20]
runs-on: ubuntu-latest
container: node:${{ matrix.node-version }}-buster
steps:
Expand All @@ -21,6 +21,8 @@ jobs:
run: npm install
- name: Install package (development)
run: npm install --only=dev
- name: Build package
run: npm run build
- name: Verify Javascript code linting
run: npm run lint
- name: Run unit tests
Expand Down

0 comments on commit 43349c0

Please sign in to comment.