chore(deps): update babel monorepo #341
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Chromium Build Test | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-versions: [12.x] | |
name: node${{ matrix.node-versions }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up node ${{ matrix.node-versions }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-versions }} | |
- name: Install dependencies & test & build | |
run: | | |
npm ci | |
npm test | |
npm run libraries | |
npm run webpack:build:chromium | |
npm run test:build |