mirror of
https://github.com/sasjs/adapter.git
synced 2025-12-11 09:24:35 +00:00
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
# 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: SASjs Build
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [lts/fermium]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: npm
|
|
- name: Check npm audit
|
|
run: npm audit --production --audit-level=low
|
|
- name: Install Dependencies
|
|
run: npm ci
|
|
- name: Check code style
|
|
run: npm run lint
|
|
- name: Run unit tests
|
|
run: npm test
|
|
- name: Generate coverage report
|
|
uses: artiomtr/jest-coverage-report-action@v2.0-rc.2
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Build Package
|
|
run: npm run package:lib
|
|
env:
|
|
CI: true
|