Skip to content

Merge pull request #104 from solidjs-community/dependabot/npm_and_yar… #233

Merge pull request #104 from solidjs-community/dependabot/npm_and_yar…

Merge pull request #104 from solidjs-community/dependabot/npm_and_yar… #233

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- reactivity-v2
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node: ["14", "16", "18"]
steps:
- uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 7
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run build
run: pnpm run build
- name: Lint source code
run: pnpm run lint
- name: Run all tests
run: pnpm run test:all
- name: Sanity check standalone build
working-directory: standalone
run: |
pnpm install --frozen-lockfile
pnpm build
pnpm test