Skip to content

Commit

Permalink
chore: workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
whes1015 committed Jul 23, 2023
1 parent 98160d7 commit f01838f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/github_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
runs-on: windows-latest
defaults:
run:
working-directory: dev
working-directory: src
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Restore dependencies
run: npm ci
run: npm i
- name: Build
run: npm run dist
- name: Upload Artifact
Expand All @@ -32,15 +32,15 @@ jobs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: dev
working-directory: src
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Restore dependencies
run: npm ci
run: npm i
- name: Build
run: npm run dist
- name: Upload Artifact
Expand All @@ -53,15 +53,15 @@ jobs:
runs-on: macos-latest
defaults:
run:
working-directory: dev
working-directory: src
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Restore dependencies
run: npm ci
run: npm i
- name: Build
run: npm run dist
- name: Upload Artifact
Expand Down

0 comments on commit f01838f

Please sign in to comment.