chore: modify for cdf #24
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: CI tests | |
on: | |
push: | |
paths: | |
- "./.github/**.yml" | |
- "**/packages/**.js" | |
- "**/packages/**/package.json" | |
jobs: | |
pr-tests: | |
name: Install, lint, test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: [18.x] | |
os: [ubuntu-latest, windows-latest] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install npm 7 | |
run: npm i -g npm@7 --registry=https://registry.npmjs.org | |
- name: Install | |
run: npm ci | |
- name: Lint | |
run: npm run lint:ci | |
- name: E2E tests | |
run: npm run test:e2e |