Skip to content

⬆️ svgr-rs/core fix linux bindings not found #13

⬆️ svgr-rs/core fix linux bindings not found

⬆️ svgr-rs/core fix linux bindings not found #13

Workflow file for this run

name: Node.js CI
on:
push:
pull_request:
branches: [master,release]
jobs:
test:
runs-on: ubuntu-latest
name: test
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: checkout code repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install pnpm
run: npm i pnpm@7.23.0 -g
- name: Install
run: |
pnpm install --frozen-lockfile=false
- name: Build
run: |
pnpm build
- name: Bundle
run: |
pnpm bundle
- name: Test
run: |
pnpm test