Skip to content

Commit

Permalink
setting: github actions 스크립트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
flynnpark committed Jan 2, 2024
1 parent 52c6ebc commit 8cee915
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/test-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,18 @@ jobs:
test:
name: Run test
runs-on: ubuntu-latest
strategy:
matrix:
node: [18.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: '18'
node: ${{ matrix.node}}
cache: 'npm'

- name: Install dependencies
run: npm install --immutable
Expand Down

0 comments on commit 8cee915

Please sign in to comment.