Skip to content

chore(deps) Updating dependencies #18

chore(deps) Updating dependencies

chore(deps) Updating dependencies #18

Workflow file for this run

name: Node CI
on:
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
stencil-version: [2.4.0, latest]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm run build -- --ci
npm run test.ci
env:
CI: true