Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
feat: test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonHowe committed Jul 6, 2020
1 parent 0bfc87f commit 4b9ca0e
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Tests

on:
push:
branches: "*"

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Install pnpm
run: npm i -g pnpm

- name: Config pnpm
run: pnpm config set verify-store-integrity false

- name: Cache node_modules
uses: actions/cache@v1
with:
path: ~/.pnpm-store
key: ${{ hashFiles('pnpm-lock.yaml') }}

- name: Install dependencies
run: pnpm i

- name: Test with pnpm
run: pnpm run test

0 comments on commit 4b9ca0e

Please sign in to comment.