Skip to content

Commit

Permalink
自動ビルドを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
oka4shi authored Jan 23, 2024
1 parent 6054789 commit 31bd74c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Auto Build

on: [push]

jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: npm install, and tsc
run: |
npm install
npm run -w gas tsc
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: |
gas/dist/main.js

0 comments on commit 31bd74c

Please sign in to comment.