Skip to content

Update build.yaml

Update build.yaml #7

Workflow file for this run

name: 'Build'
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Test build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
npm install
- name: Run linters
uses: wearerequired/lint-action@v2
with:
eslint: true
prettier: true
- name: Build and Test
run: |
npm install
npm run test
npm run build