Skip to content

build: setup CI/CD for package publishing #7

build: setup CI/CD for package publishing

build: setup CI/CD for package publishing #7

name: Pull Request Checks
on:
pull_request:
branches: [ master ]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: 14.x
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm test