Skip to content

chore: include the dist/index.js file as part of the release #138

chore: include the dist/index.js file as part of the release

chore: include the dist/index.js file as part of the release #138

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '14'
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Code Coverage
uses: codecov/[email protected]
- name: Build
run: npm run build
- name: Tag
if: github.ref == 'refs/heads/main'
uses: gembaadvantage/uplift-action@v2
with:
args: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}