Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 8 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,20 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-env: [ 'development', 'production' ]
node-env: ["development", "production"]
env:
NODE_ENV: ${{ matrix.node-env }}
NODE_ENV: ${{ matrix.node-env }}
steps:
- name: Checkout
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node
uses: actions/[email protected]
with:
node-version: 16
- name: Setup Bun
uses: oven-sh/setup-bun@v1

- run: yarn install
- run: bun install

- run: yarn build

- run: yarn lint
- run: bun lint
if: ${{ matrix.node-env == 'development' }}

- run: yarn test
- run: bun test
if: ${{ matrix.node-env == 'development' }}