You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
680 B
32 lines
680 B
name: Node.js CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master, beta ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
env:
|
|
CLIENT_DIR: ./client
|
|
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [10.x, 12.x, 13.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- run: npm ci
|
|
working-directory: ${{env.CLIENT_DIR}}
|
|
- run: npm run build --if-present
|
|
working-directory: ${{env.CLIENT_DIR}}
|
|
- run: npm test
|
|
working-directory: ${{env.CLIENT_DIR}}
|
|
env:
|
|
CI: true
|
|
|