Skip to content

feat: remove allow-same-origin for better security. #149

feat: remove allow-same-origin for better security.

feat: remove allow-same-origin for better security. #149

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
- next
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.1
- name: Setup Node
uses: actions/setup-node@v6.2.0
with:
node-version: '24.14.0'
- name: Install Dependencies
run: npm ci
- name: Save error log
uses: actions/upload-artifact@v6.0.0
if: ${{ failure() }}
with:
name: npm-debug-log-${{ hashFiles('package-lock.json') }}
path: npm-debug.log
- name: Lint
run: npm run lint
- name: Build
run: npm run build:esm