Skip to content

Added Async Christmas Quiz 2023 #118

Added Async Christmas Quiz 2023

Added Async Christmas Quiz 2023 #118

Workflow file for this run

name: build
on: [pull_request]
jobs:
npm-run-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Read .nvmrc
id: nvmrc
shell: bash
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
- uses: actions/setup-node@v2
with:
node-version: ${{ steps.nvmrc.outputs.NODE_VERSION }}
- run: npm ci
- run: npm run build
env:
CI: true