feat: implment importkind #118
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2e test | |
on: [push, pull_request] | |
jobs: | |
run-e2e-test: | |
strategy: | |
matrix: | |
version: [16, 18] | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
node-version: ${{ matrix.version }} | |
- name: Install berry | |
run: corepack enable | |
- name: install dependices | |
run: yarn | |
- name: build project | |
run: yarn build | |
- name: run e2e test | |
run: yarn e2e |