Skip to content

test: remove failing test for now #344

test: remove failing test for now

test: remove failing test for now #344

Workflow file for this run

---
name: Release
on: [push]
jobs:
release:
name: Release
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/iron
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Run tests
run: npm test
- name: Semantic release
run: npm run semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}