Skip to content

Commit

Permalink
migrate from circleci to github action (#499)
Browse files Browse the repository at this point in the history
  • Loading branch information
ety001 authored Dec 6, 2023
1 parent 436af86 commit 90df0fa
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 23 deletions.
23 changes: 0 additions & 23 deletions .circleci/config.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: run-test-unit

on:
push:
branches:
- 'master'
workflow_dispatch:

jobs:
node6:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Build to run test unit
uses: docker/build-push-action@v4
with:
context: .
file: node-6.dockerfile
push: false
tags: test

0 comments on commit 90df0fa

Please sign in to comment.