fix #2028, fix #2029 revert spread value bypass, and guard multi-text #1373
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: 'Solid CI' | |
on: | |
pull_request: | |
branches: | |
- '*' | |
push: | |
branches: | |
- main | |
jobs: | |
job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
- name: Installing deps | |
run: pnpm install | |
- name: Building | |
run: pnpm run build | |
- name: Testing & Coverage | |
run: | | |
pnpm run test | |
pnpm run coverage | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
base-path: packages/solid | |
path-to-lcov: "./packages/solid/coverage/lcov.info" | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: dist-folder | |
path: | | |
'*/dist' | |
'*/types' |