Skip to content

test b2

test b2 #352

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node
uses: actions/setup-node@v2
with:
node-version: 16.x
cache: 'yarn'
cache-dependency-path: ./sub/yarn.lock
- name: Run a multi-line script
run: |
node --version
yarn install
node main.js
working-directory: sub