Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanlescure committed Nov 13, 2021
0 parents commit 4558148
Show file tree
Hide file tree
Showing 20 changed files with 6,203 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
name: Test on Node ${{ matrix.node }} and ${{ matrix.os }}

runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['14.x', '16.x']
os: [ubuntu-latest, macOS-latest]

steps:
- name: Checkout repo
uses: actions/checkout@v2

- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}

- name: Install PNPM
run: npm install -g pnpm

- name: Install Dependencies
run: pnpm i

- name: Test
run: pnpm test
Loading

0 comments on commit 4558148

Please sign in to comment.