Skip to content

test: add jest dependency #18

test: add jest dependency

test: add jest dependency #18

Workflow file for this run

name: CI/CD for env-checker
on:
push:
branches:
- main
paths-ignore:
- '.github/workflows/cicd.yml'
- 'README.md'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # ensure semantic-release can access all git history
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org/'
- name: Install dependencies
run: npm install
# - name: Build
# run: npm run build
# - name: Test
# run: npm run test
# - name: Publish
# run: npm publish
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Semantic Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}