Skip to content

Merge pull request #1006 from EnergySage/dependabot/npm_and_yarn/es-b… #4290

Merge pull request #1006 from EnergySage/dependabot/npm_and_yarn/es-b…

Merge pull request #1006 from EnergySage/dependabot/npm_and_yarn/es-b… #4290

Workflow file for this run

name: ci
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
steps:
- name: Checkout 🛎
uses: actions/checkout@master
- name: Setup node env 🏗
uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}
check-latest: true
- name: Cache node_modules 📦
uses: actions/[email protected]
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies 👨🏻‍💻
run: |
make install
make update-peer-deps
make build-scss-pkg
make symlink
make build-vue-pkg
make symlink
- name: Run linter 👀
run: make lint
- name: Run tests 🧪
run: make test