Skip to content

Upgrade xlsx

Upgrade xlsx #324

Workflow file for this run

name: Test pull request
on:
pull_request
jobs:
test-PR:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Cache
uses: actions/cache@v2
with:
path: |
~/cache
!~/cache/exclude
**/node_modules
~/.cache
key: ${{ runner.os }}-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-${{ hashFiles('package-lock.json') }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: npm install, test, and build
run: |
npm install
npm install --prefix server
env:
CI: true
- name: npm lint
run: |
npm run lint
npm run lint:style
env:
CI: true
- name: npm test
run: |
npm run test:unit
env:
CI: true