Skip to content

init-test

init-test #5

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
strategy:
matrix:
include:
- os: ubuntu-latest
platform: linux
arch: x64
- os: macos-latest
platform: darwin
arch: x64
- os: windows-latest
platform: win32
arch: x64
runs-on: ${{ matrix.os }}
timeout-minutes: 5
steps:
- name: Setup repo
uses: holepunchto/actions/.github/steps/setup-repo@v1
- name: Install Bare
run: npm i -g bare-runtime
- name: Install Deps
run: npm i
- name: Lint
run: npm run lint
- name: Test
run: npm t