This repository has been archived by the owner on Nov 28, 2024. It is now read-only.
build(deps-dev): bump @vercel/ncc from 0.28.6 to 0.38.1 #215
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 12.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12.x | |
- name: Install dependencies | |
run: npm ci | |
- name: Check formatting | |
run: npm run format-check | |
- name: Build | |
run: npm run build --if-present | |
- name: Run Tests | |
run: npm run test-verbose | |
env: | |
CI: true | |
- name: Check source has been packaged | |
run: npm run package && git diff --quiet |