Skip to content

Merge pull request #277 from Cox-Automotive/update-role-type-readme #304

Merge pull request #277 from Cox-Automotive/update-role-type-readme

Merge pull request #277 from Cox-Automotive/update-role-type-readme #304

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Build and Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
REFRESH_TOKEN: ${{ secrets.ALKS_REFRESH_TOKEN }}
USERNAME: ${{ secrets.ALKS_USER }}
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- run: npm run build --if-present
- name: Run tests
run: npm test -- --no-watch
- name: Run end-2-end tests
run: |
make test CI_MODE=true
working-directory: ./e2e