From f6321fc3249d83a0059ef47978ed101d3c75375f Mon Sep 17 00:00:00 2001 From: Travis Fischer Date: Wed, 2 Jun 2021 13:59:27 -0400 Subject: feat: import from notion2site repo --- .github/funding.yml | 1 + .github/workflows/build.yml | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 .github/funding.yml create mode 100644 .github/workflows/build.yml (limited to '.github') diff --git a/.github/funding.yml b/.github/funding.yml new file mode 100644 index 0000000..9377c23 --- /dev/null +++ b/.github/funding.yml @@ -0,0 +1 @@ +github: [transitive-bullshit] diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..b84b00e --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,17 @@ +name: build +on: [push, pull_request] +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [12.x, 14.x] + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - run: npm install + - run: npm run build --if-present + - run: npm run test --if-present -- cgit v1.2.3