Skip to content

Add async/await to examples #139

Add async/await to examples

Add async/await to examples #139

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Install Dependencies
run: npm run build
- name: Lint / Dependencies / Unit Tests
run: npm run test