Skip to content

Commit

Permalink
Refactored code to improve performance and
Browse files Browse the repository at this point in the history
readability
  • Loading branch information
jooyoungseo committed Nov 2, 2023
1 parent f0f5979 commit 2120f48
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build

0 comments on commit 2120f48

Please sign in to comment.