[SFT-1664]: With the Site-Aware / multi-site feature enabled, Exports now include multiple copies of each submission #1285
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: Builder | |
on: | |
pull_request: | |
branches: [v5] | |
jobs: | |
ts-linter: | |
runs-on: ubuntu-latest | |
name: Linter | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: npm ci | |
run: npm ci | |
- name: npm run lint | |
run: | | |
cd packages/client | |
npm run lint | |
ts-tests: | |
runs-on: ubuntu-latest | |
name: Tests | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: npm ci | |
run: npm ci | |
- name: npm test | |
run: | | |
cd packages/client | |
npm test |