Skip to content

chore(deps): update babel monorepo #467

chore(deps): update babel monorepo

chore(deps): update babel monorepo #467

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '14.x'
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Lint code
run: npm run lint
- name: Test build
run: npm run build
- name: Test bundle size
run: npm run bundlewatch
env:
BUNDLEWATCH_GITHUB_TOKEN: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}
CI_REPO_OWNER: sylcastaing
CI_REPO_NAME: hass-qubino-flush-pilot-wire-card
CI_COMMIT_SHA: ${{ github.sha }}
CI_BRANCH: ${{ github.ref }}