Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed May 17, 2024
1 parent 0ccbb1d commit b964f54
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/feature.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
jobs:
test:
runs-on: ubuntu-latest
environment: release
name: Test
runs-on: ubuntu-latest
steps:
- name: setup repository
uses: actions/checkout@v3
Expand All @@ -11,7 +11,7 @@ jobs:
- name: setup node.js
uses: actions/setup-node@v3
with:
node-version: "22"
node-version: '22'
- run: npm ci --legacy-peer-deps
- run: npm run lint
- run: npm run test
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
jobs:
test:
runs-on: ubuntu-latest
environment: release
name: Test
runs-on: ubuntu-latest
steps:
- name: setup repository
uses: actions/checkout@v3
Expand All @@ -11,15 +11,15 @@ jobs:
- name: setup node.js
uses: actions/setup-node@v3
with:
node-version: "22"
node-version: '22'
- run: npm ci --legacy-peer-deps
- run: npm run lint
- run: npm run test
- run: npm run build
- run: npx semantic-release
env:
- env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
name: Test, build and release
on:
push:
Expand Down
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ module.exports = [
},
},
{
ignores: ['**/package-lock.json'],
ignores: ['**/package-lock.json', '**/pnpm-lock.yaml'],
},
];

0 comments on commit b964f54

Please sign in to comment.