Skip to content

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

chore(ci): switch to GHA from circleci

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

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: Install deps
run: npm ci
- name: Test
run: make test
- name: Build
run: make build
- name: ls
run: |
pwd
ls
cd ..
ls
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: linux-build
path: |
- out
- coverage
- package.json
- vendor