Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #5 from shikajiro/master-to-main
Browse files Browse the repository at this point in the history
default branch
  • Loading branch information
shikajiro authored Oct 11, 2023
2 parents 831cc37 + a89eb4d commit d2950cb
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/workflows/mention-to-chatwork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,24 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: "16"

- name: Cache npm
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Build
run: |
npm install
npm run build
- name: test run
uses: ./.
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-latest-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release latest tag
on:
push:
branches:
- master
- main

jobs:
push-latest-tag:
Expand Down

0 comments on commit d2950cb

Please sign in to comment.