Upgrade mrmime #405
Workflow file for this run
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: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
test: | |
name: Node.js v16 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
- name: (env) pnpm | |
run: curl -L https://pnpm.js.org/pnpm.js | node - add --global pnpm | |
- name: (env) cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-${{ matrix.nodejs }}-${{ hashFiles('**/package.json') }} | |
restore-keys: ${{ runner.os }}-${{ matrix.nodejs }}- | |
- name: Install | |
run: pnpm install | |
- name: Compiles | |
run: pnpm run build | |
- name: Run Tests | |
run: pnpm test | |
- name: Check Types | |
run: pnpm run types |