Fix lint errors #71
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: Test | |
on: push | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.nodeVersion }} | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Lint | |
run: npm run lint | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.nodeVersion }} | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Unit Tests | |
run: npm run test:unit | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- nodeVersion: 10.x | |
testPlugins: "meteor" | |
testOptions: "--non-root" | |
- nodeVersion: 10.x | |
testPlugins: "docker,mongo,proxy,default" | |
testOptions: "--non-root" | |
- nodeVersion: 22.x | |
testPlugins: "meteor" | |
testOptions: "" | |
- nodeVersion: 22.x | |
testPlugins: "docker,mongo,proxy,default" | |
testOptions: "" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.nodeVersion }} | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Free up space | |
run: sudo rm -rf /usr/local/lib/android | |
- name: Run tests | |
env: | |
TEST_PLUGINS: ${{ matrix.testPlugins }} | |
TEST_OPTIONS: ${{ matrix.testOptions }} | |
run: | | |
npm run test -- --plugins="$TEST_PLUGINS" $TEST_OPTIONS |