Skip to content

fix(arc): fix the order of extrusion tags #435

fix(arc): fix the order of extrusion tags

fix(arc): fix the order of extrusion tags #435

Workflow file for this run

name: CI
on: [pull_request]
jobs:
test-build:
name: Continuous Integration
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 8.2.0
- run: pnpm install
- run: pnpm test -- --coverage
- run: pnpm build
- name: Upload coverage reports to Codecov
run: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t ${CODECOV_TOKEN}