Skip to content

Commit

Permalink
fix: Add GitHub Actions and Remove CircleCI (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejonas authored Apr 29, 2021
1 parent 79fd094 commit 9e6ca71
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 83 deletions.
66 changes: 0 additions & 66 deletions .circleci/config.yml

This file was deleted.

9 changes: 0 additions & 9 deletions .circleci/scripts/collect-har-artifact.sh

This file was deleted.

8 changes: 0 additions & 8 deletions .circleci/scripts/deps-install.sh

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/build-test-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build, Lint, and Test

on:
push:
branches: [main]
pull_request:

jobs:
build-lint-test:
name: Build, Lint, and Test
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn --frozen-lockfile --ignore-scripts
- run: yarn build
- run: yarn lint
- run: yarn test
all-jobs-pass:
name: All jobs pass
runs-on: ubuntu-20.04
needs:
- build-lint-test
steps:
- uses: actions/checkout@v2
- run: echo "Great success!"

0 comments on commit 9e6ca71

Please sign in to comment.