Skip to content

Commit

Permalink
Update dependencies, add Prettier, testing on PR's (#65)
Browse files Browse the repository at this point in the history
* Updates dependencies to the latest versions

* Update peer dependencies to Stencil v2 and above

* Adding github pipelines

* Adds prettier
  • Loading branch information
splitinfinities authored Sep 24, 2021
1 parent b1cc372 commit 4e805ae
Show file tree
Hide file tree
Showing 7 changed files with 11,796 additions and 3,528 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Node CI

on:
pull_request:
branches:
- '**'

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.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
Loading

0 comments on commit 4e805ae

Please sign in to comment.