Skip to content

Commit

Permalink
Merge #9: v0.6.3-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
itsrn authored Aug 25, 2023
2 parents cf25d53 + 64db558 commit cb9f7e1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "hidabroot",
"version": "0.6.2-beta",
"version": "0.6.3-beta",
"description": "An unofficial API for hidabroot",
"main": "./lib/index.js",
"types": "build/index.d.ts",
"types": "lib/index.d.ts",
"scripts": {
"test": "mocha ./test/allTests.test.ts",
"build": "tsc",
Expand Down
2 changes: 1 addition & 1 deletion test/allTests.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe } from "mocha";
import { expect } from "chai";
import { todayNews, getArticle } from "../src/index";
import { todayNews, getArticle } from "../lib/index";

describe("todayNews function", () => {
it("should return the json object of today news", async () => {
Expand Down

0 comments on commit cb9f7e1

Please sign in to comment.