Skip to content

fix(solution): fix solution of challenge 2022/05 #321

fix(solution): fix solution of challenge 2022/05

fix(solution): fix solution of challenge 2022/05 #321

Workflow file for this run

name: RESULTS
on:
push:
branches:
- main
pull_request:
jobs:
validate:
name: βœ… Validate project
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout project
uses: actions/checkout@v3
- name: 🟒 Setup NodeJS 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
- name: πŸ“₯ Install dependencies
run: npm ci
- name: πŸ’… Check format
run: npm run check:format
- name: πŸ“‘ Check lint
run: npm run check:lint
test:
name: πŸ§‘β€πŸ”¬ Test project
runs-on: ubuntu-latest
needs: validate
steps:
- name: ⬇️ Checkout project
uses: actions/checkout@v3
- name: 🟒 Setup NodeJS 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
- name: πŸ“₯ Install dependencies
run: npm ci
- name: πŸ§ͺ Run challenges
run: make run