Skip to content

Commit

Permalink
Merge pull request #1 from kakucodes/chore/update-actions
Browse files Browse the repository at this point in the history
updating actions
  • Loading branch information
kakucodes committed Feb 11, 2024
2 parents e4b8225 + 6a6b22e commit 060df0f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
- run: yarn install
- uses: sibiraj-s/action-eslint@v2
- uses: sibiraj-s/action-eslint@v3
with:
eslint-args: "--ignore-path=.gitignore --quiet"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tsc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: tsc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: install node v18
uses: actions/setup-node@v1
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unitTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Test using Node.js
uses: actions/setup-node@v1
with:
node-version: "18"
node-version: 20
- run: yarn install
- run: yarn test:ci
- run: yarn test

- name: Tests ✅
if: ${{ success() }}
Expand Down

0 comments on commit 060df0f

Please sign in to comment.