Skip to content

chore(ci): switch to GHA from circleci #1

chore(ci): switch to GHA from circleci

chore(ci): switch to GHA from circleci #1

Workflow file for this run

name: Test and Deploy
on:
pull_request:
push:
branches:
- main
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
- name: Test
run: make test
- name: Build
run: make build
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: linux-build
path: |
- out
- coverage
- package.json
- vendor