Skip to content

Commit

Permalink
chore: fix trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
changchanghwang committed Feb 2, 2024
1 parent 3fac0c2 commit 43ee201
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: NodeJS with Webpack
name: Release on push to release branch

on:
pull_request:
branches: [ "release" ]
push:
branches: ['release']

permissions:
contents: read # for checkout
Expand All @@ -28,7 +28,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache: 'npm'
- name: Cache node modules
uses: actions/cache@v2
with:
Expand All @@ -39,7 +39,7 @@ jobs:
${{ runner.OS }}-
- name: Package install
run: npm ci
- name: lint
- name: lint
run: |
npm run lint
- name: Release
Expand Down

0 comments on commit 43ee201

Please sign in to comment.