Skip to content

Commit

Permalink
ci: update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jnoortheen committed Jan 11, 2025
1 parent 1ba5608 commit 045b088
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn build
cache: npm
- run: npm install --frozen-lockfile
- run: npm run lint
- run: npm run build

# publish the extension to marketplaces
publish:
Expand All @@ -41,10 +41,10 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: current
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn package
cache: npm
- run: npm install --frozen-lockfile
- run: npm run build
- run: npm run package
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
Expand Down

0 comments on commit 045b088

Please sign in to comment.