Survey plugin updates: fix CSS, clean up code/comments, add survey.css to dist archive #1444
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: build | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Build, lint, and test on Node.js ${{ matrix.node }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [18, 20] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
# Running this after `npm ci` because `npm ci` removes `node_modules`: | |
- name: Download Turborepo cache | |
uses: actions/cache@v3 | |
with: | |
path: node_modules/.cache/turbo | |
key: ${{ runner.os }}-node-${{ matrix.node }}-turbo-${{ hashFiles('node_modules/.cache/turbo') }} | |
restore-keys: | | |
${{ runner.os }}-node-${{ matrix.node }}-turbo- | |
- name: Build packages | |
run: npm run build | |
- name: Run tests | |
run: npm run test -- --ci --coverage --maxWorkers=2 | |
env: | |
NODE_OPTIONS: "--max-old-space-size=4096" # Increase heap size for jest |