Skip to content

Commit

Permalink
chore(deps): update github actions versions (#657)
Browse files Browse the repository at this point in the history
* chore(deps): update github actions versions

Fixes #649

* chore: remove commit message lint
  • Loading branch information
steabert authored Feb 18, 2022
1 parent 328671e commit 2dacbbc
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 51 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2

- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '16'
registry-url: 'https://registry.npmjs.org'
Expand Down
19 changes: 8 additions & 11 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,13 @@ jobs:
matrix:
node-version: ['16', '17']
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --immutable --immutable-cache
- name: Check commit message
if: ${{ github.event_name == 'pull_request' }}
run: yarn commitlint ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}
- name: Linting & Unit testing
run: |
yarn lint
Expand All @@ -42,9 +39,9 @@ jobs:
gstreamer:
image: steabert/gst-rtsp-launch
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
Expand All @@ -67,9 +64,9 @@ jobs:
gstreamer:
image: steabert/gst-rtsp-launch
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
Expand All @@ -90,9 +87,9 @@ jobs:
gstreamer:
image: steabert/gst-rtsp-launch
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ node_modules/

# Python
__pycache__/

# GitHub
!.github/
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@
"rtsp": "sbin/rtsp-ws-server.sh",
"examples": "yarn build && http-server examples/browser",
"dev": "node sbin/dev.js",
"release": "sbin/release.py",
"commitlint": "sbin/commitlint.py"
"release": "sbin/release.py"
},
"repository": {
"type": "git",
Expand Down
36 changes: 0 additions & 36 deletions sbin/commitlint.py

This file was deleted.

0 comments on commit 2dacbbc

Please sign in to comment.