Skip to content

Commit

Permalink
Merge pull request #84 from alphaolomi/alphaolomi-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
alphaolomi committed Oct 4, 2023
2 parents f80e3e9 + 1108f56 commit b31c0ed
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Tests

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 14

- name: Cache Yarn dependencies
uses: actions/cache@v2
with:
path: ~/.cache/yarn
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-${{ runner.os }}-
- name: Install dependencies
run: yarn install

- name: Run tests
run: yarn test

0 comments on commit b31c0ed

Please sign in to comment.