Skip to content

ci: update gh actions #2

ci: update gh actions

ci: update gh actions #2

Workflow file for this run

name: Test
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20 ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm run build
- name: Run docker build
run: cd test && docker compose build --build-arg node=${{ matrix.node-version }}
- run: npm test