mirror of
https://github.com/interep-project/contracts.git
synced 2026-01-13 15:27:57 -05:00
23 lines
394 B
YAML
23 lines
394 B
YAML
name: test
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 16.x
|
|
|
|
- run: yarn --frozen-lockfile
|
|
- run: yarn compile
|
|
- run: yarn test:prod
|