Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: using github actions
Browse files Browse the repository at this point in the history
dannyhw committed Feb 6, 2024
1 parent 5f6e9b4 commit 27c63bc
Showing 2 changed files with 29 additions and 65 deletions.
65 changes: 0 additions & 65 deletions .circleci/config.yml

This file was deleted.

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

on:
push:
branches:
- next
pull_request:
types: [opened, synchronize, reopened]

jobs:
build:
name: Check everything
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set node version
uses: actions/setup-node@v4
with:
node-version: 20
- name: install and compile
run: yarn
- name: build
run: yarn build
- name: lint
run: yarn lint
- name: test
run: yarn test

0 comments on commit 27c63bc

Please sign in to comment.