Skip to content

all: Create compose build script #190

all: Create compose build script

all: Create compose build script #190

Workflow file for this run

name: Node.js
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
jobs:
test:
runs-on: ubuntu-latest
name: Test
strategy:
matrix:
node-version: [ "18.x", "lts/*", "*" ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Pre setup
run: yarn pre
- name: Do test
run: yarn test