* feat: upgraded to node v18, added .nvmrc and updated workflows * feat: upfate validate workflow * feat: update validate workflow * fix: update lock file * refactor: update validate file * build: update pkg * refactor: updated packages * build: updated frontend-build, frontend-platform, component-footer & component-header packages * refactor: updated workflow * refactor: updated workflow * refactor: updated workflow * build: update commit file * build: update lock file * refactor: update workflow * refactor: update workflow * refactor: update workflow * refactor: update workflow * build: update pkg * build: update pkgs * build: update lock file --------- Co-authored-by: Bilal Qamar <59555732+BilalQamar95@users.noreply.github.com>
24 lines
491 B
YAML
24 lines
491 B
YAML
name: validate
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup Nodejs Env
|
|
run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ env.NODE_VER }}
|
|
- run: make validate.ci
|
|
- name: Upload coverage
|
|
uses: codecov/codecov-action@v3
|
|
with:
|
|
fail_ci_if_error: true
|