Skip to content

Commit

Permalink
ci: upgrade actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
b-ma committed Jan 16, 2025
1 parent 4900a89 commit 5272b76
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: GH Pages
name: gh-pages

on:
push:
Expand All @@ -13,10 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 'Install Node'
uses: actions/setup-node@v3.6.0
- name: Install Node
uses: actions/setup-node@v4

- name: Install dependencies
run: npm install
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: Unit Tests
name: unit-tests
on: push

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 'Install Node'
uses: actions/setup-node@v3.6.0
- name: Install Node
uses: actions/setup-node@v4

- name: Install dependencies
run: npm install

- name: "Run Test"
- name: Run Test
run: npm run test
2 changes: 1 addition & 1 deletion tests/utils/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
},
},
env: {
type: 'development',
// type: 'development',
port: 8081,
serverAddress: '127.0.0.1',
useHttps: false,
Expand Down

0 comments on commit 5272b76

Please sign in to comment.