Skip to content

Commit

Permalink
switch to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
0xcaff committed Nov 24, 2023
1 parent 2b74b72 commit 560f0d0
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 138 deletions.
138 changes: 0 additions & 138 deletions .circleci/config.yml

This file was deleted.

36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
on:
push:
branches:
- master

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 14
cache: yarn

- name: Install Deps
run: yarn install

- name: Test
run: yarn test

- name: Check Formatting
run: yarn check-formatting

- name: Build
run: yarn build

- name: Analyze Bundle
run: yarn analyze -- --html bundle-explorer.html

- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: bundle-explorer
path: bundle-explorer.html

0 comments on commit 560f0d0

Please sign in to comment.