simple-keyboard/.github/workflows/pull_request.yml
2023-02-25 13:31:10 -05:00

26 lines
618 B
YAML

name: Build PR (Standard)
on: pull_request
jobs:
build:
runs-on: ${{ matrix.os }}
if: ${{ github.actor != 'dependabot[bot]' }}
strategy:
matrix:
node-version: [16.x]
os: [ubuntu-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: |
export NODE_OPTIONS=--openssl-legacy-provider
npm install
npm run coverage
env:
CI: true