Skip to content

chore: properly name git workflow #2

chore: properly name git workflow

chore: properly name git workflow #2

Workflow file for this run

name: Build & Test
on:
pull_request:
types: [ opened, reopened, synchronize ]
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Install root dependencies
run: yarn install
- name: Build
run: yarn build
- name: Run tests
run: |
yarn test