Skip to content

Future.flatMap

Future.flatMap #5

Workflow file for this run

name: main
on:
- push
- pull_request
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache node modules
id: cache-node-modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: npm install
if: steps.cache-nodemodules.outputs.cache-hit != 'true'
run: |
npm install
- name: npm build
run: |
npm run build
- name: npm ci
run: |
npm run ci