Skip to content

ci: migrate from CircleCI to GithubActions #2

ci: migrate from CircleCI to GithubActions

ci: migrate from CircleCI to GithubActions #2

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14
uses: actions/setup-node@v2
with:
node-version: 14.x
cache: yarn
- name: Yarn Install
run: yarn install --frozen-lockfile
- name: Test
run: yarn test