Skip to content

ci(checks): update job names #6

ci(checks): update job names

ci(checks): update job names #6

Workflow file for this run

name: CI Checks
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["16.x", "18.x"]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Yarn
run: npm install -g yarn
- name: Install Dependencies
run: yarn
- name: Build Application
run: yarn build