Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: update workflows versions #30

Merged
merged 19 commits into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
59c5c8c
build(deps): bump node-fetch from 2.6.1 to 2.6.7
dependabot[bot] May 16, 2022
ecd1724
build(deps): bump ajv from 5.5.2 to 6.12.6
dependabot[bot] May 16, 2022
b998e3d
build(deps): bump semver-regex from 3.1.3 to 3.1.4
dependabot[bot] Jun 3, 2022
bd8d88c
build(deps-dev): bump semantic-release from 17.4.7 to 19.0.3
dependabot[bot] Jun 10, 2022
4fe72ec
build(deps): bump json5 from 2.1.3 to 2.2.3
dependabot[bot] Jan 6, 2023
38c800c
build(deps): bump minimist from 1.2.5 to 1.2.8
dependabot[bot] Mar 5, 2023
94e66fd
build: update actions version
jlozovei Jan 3, 2024
c59707f
Merge pull request #24 from jlozovei/dependabot/npm_and_yarn/node-fet…
jlozovei Jan 3, 2024
162fe63
Merge pull request #25 from jlozovei/dependabot/npm_and_yarn/ajv-6.12.6
jlozovei Jan 3, 2024
a4a46f0
Merge pull request #26 from jlozovei/dependabot/npm_and_yarn/semver-r…
jlozovei Jan 3, 2024
b1ec4d0
Merge remote-tracking branch 'origin/build/update-actions-version' in…
jlozovei Jan 3, 2024
580842c
Merge pull request #27 from jlozovei/dependabot/npm_and_yarn/semantic…
jlozovei Jan 3, 2024
80274c3
Merge branch 'build/update-actions-version' into dependabot/npm_and_y…
jlozovei Jan 3, 2024
c872cab
Merge pull request #28 from jlozovei/dependabot/npm_and_yarn/json5-2.2.3
jlozovei Jan 3, 2024
03eac66
Merge branch 'build/update-actions-version' into dependabot/npm_and_y…
jlozovei Jan 3, 2024
2eb802f
Merge pull request #29 from jlozovei/dependabot/npm_and_yarn/minimist…
jlozovei Jan 3, 2024
9301979
build: update husky and regen lock file
jlozovei Jan 3, 2024
6933de2
build: update husky hooks format
jlozovei Jan 3, 2024
9a3b235
build: add commitlint package and config
jlozovei Jan 3, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 18 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,43 @@ on:
jobs:
test:
name: Test code
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 12
node-version: 18.16.0
cache: 'npm'

- name: Install dependencies
run: npm install

- name: Test code
run: npm run test

release:
name: Semantic Release
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
needs: test
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 12
node-version: 18.16.0
cache: 'npm'

- name: Install dependencies
run: npm install

- name: Build
run: npm run build

- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down
15 changes: 10 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,25 @@ on:
jobs:
test:
name: Test code
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 12
node-version: 18.16.0
cache: 'npm'

- name: Install dependencies
run: npm install

- name: Test code
run: npm run test

- name: Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests
Expand Down
1 change: 1 addition & 0 deletions .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
4 changes: 4 additions & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run format
Loading