Skip to content

Adding linting skippublish #31

Adding linting skippublish

Adding linting skippublish #31

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Main CI | Build, Test and NPM Publish
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "Test"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
# Test using node
- name: Setup Node.js environment
uses: actions/[email protected]
- run: npm ci
- run: npm test -- --coverage
- run: tsc
- run: npx eslint .
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
# Typescript build
#- name: TypeScript build
# uses: FuLagann/tsc-build-push@v1
# Publish NPM package

Check failure on line 41 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 41
- uses: JS-DevTools/npm-publish@v1
if: !contains(github.event.head_commit.message, 'skippublish')
with:
token: ${{ secrets.NPM_TOKEN }}