Skip to content

Merge branch 'main' of https://github.com/HACC-2023/frostyice #466

Merge branch 'main' of https://github.com/HACC-2023/frostyice

Merge branch 'main' of https://github.com/HACC-2023/frostyice #466

Workflow file for this run

name: hello
on: push
defaults:
run:
working-directory: ./my-app
jobs:
build-project:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install NPM dependencies
run: npm install
- name: Ensure code quality via ESLint
run: npm run lint -- --fix
- name: Build project assets
run: npm run build