Skip to content

Commit

Permalink
Update Github Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
baku89 committed Oct 2, 2023
1 parent 65c52b7 commit cd1ff62
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,27 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Update submodules
id: update
run: git submodule update --remote --recursive
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run install
uses: borales/actions-yarn@v4
with:
cmd: install # will run `yarn install` command
- name: Test
uses: borales/actions-yarn@v4
with:
cmd: test
- name: Build
run: npm run build
uses: borales/actions-yarn@v4
with:
cmd: build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
Expand Down

0 comments on commit cd1ff62

Please sign in to comment.