Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
takanotume24 committed Jun 4, 2024
1 parent 3371fae commit ed635be
Showing 1 changed file with 41 additions and 14 deletions.
55 changes: 41 additions & 14 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,71 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
branches:
- '**' # すべてのブランチでテストを実行

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
test:
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'

# Runs a set of commands using the runners shell
- name: install dependencies
run: |
npm install
- name: run test
run: |
npm run test
build:
if: github.ref == 'refs/heads/master' # masterブランチのときのみ実行
runs-on: ubuntu-latest
needs: test

steps:
- uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'

- name: install dependencies
run: |
npm install
- name: build
run: |
npm run build
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: build
path: ./dist

deploy:
if: github.ref == 'refs/heads/master' # masterブランチのときのみ実行
runs-on: ubuntu-latest
needs: build

steps:
- uses: actions/checkout@v4

- name: Download build artifacts
uses: actions/download-artifact@v3
with:
name: build
path: ./dist

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist

0 comments on commit ed635be

Please sign in to comment.