Skip to content

Merge pull request #1 from datage-ch/renovate/configure #43

Merge pull request #1 from datage-ch/renovate/configure

Merge pull request #1 from datage-ch/renovate/configure #43

Workflow file for this run

# 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: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Cache node_modules
id: cache-node-modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node-modules
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
always-auth: true
registry-url: https://npm.pkg.github.com
scope: "@datage-ch"
- name: install dependencies
run: yarn install
- name: lerna bootstrap
run: yarn lerna bootstrap
- name: yarn audit
run: yarn audit
- name: lint
run: yarn lint
- name: typecheck
run: yarn tsc
- name: test
run: yarn test