You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
awesome-cryptography/.github/workflows/test.yml

31 lines
484 B
YAML

name: test
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '14'
- name: Set up cache
uses: actions/cache@v3
with:
path: node_modules
key: env-${{ hashFiles('yarn.lock') }}
- name: "Install deps"
run: yarn install
- name: "Test"
run: yarn test