Skip to content

Commit

Permalink
fix: actions and unused deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mauricerenck committed Apr 18, 2024
1 parent ff4ad33 commit fd61a14
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1,284 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
name: CI
on:
push:
branches:
- main
push:
branches:
- main
jobs:
release:
name: Release
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
release:
name: Release
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 16
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20

- name: Install
run: npm install
- name: Install
run: npm install

- name: Release
env:
GITHUB_TOKEN: ${{ secrets.PAT_SEMANTIC_RELEASE }}
run: npx semantic-release
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.PAT_SEMANTIC_RELEASE }}
run: npx semantic-release
Loading

0 comments on commit fd61a14

Please sign in to comment.