Skip to content

Merge branches 'main' and 'main' of github.com:JuanPabloDiaz/brothers #69

Merge branches 'main' and 'main' of github.com:JuanPabloDiaz/brothers

Merge branches 'main' and 'main' of github.com:JuanPabloDiaz/brothers #69

Workflow file for this run

name: Test and build code
on: [push]
jobs:
unit-test:
name: Run tests and build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: "18"
- run: npm install
- run: npm run test
- run: npm run build