Skip to content

ci: remove lint command #4

ci: remove lint command

ci: remove lint command #4

Workflow file for this run

name: Test, Build and Publish a beta version
on:
push:
branches-ignore:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install dependencies
if: steps.npm-cache.outputs.cache-hit != 'true'
env:
HUSKY_SKIP_INSTALL: true
HUSKY_SKIP_HOOKS: true
run: npm ci
- name: Lint, build, test and release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
HUSKY_SKIP_HOOKS: true
run: |
npm run build:lib
npm run build -- --base-href "/coolshapes/"
# npm run test
npx semantic-release --debug --no-verify