Skip to content

Merge branch 'primary' of github.com:glifio/safe into primary #1265

Merge branch 'primary' of github.com:glifio/safe into primary

Merge branch 'primary' of github.com:glifio/safe into primary #1265

Workflow file for this run

name: tests
on: [pull_request, push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [14]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm run lint
- run: npm run test
- run: npm run build