chore: removed node 14 pr checks #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: push | |
jobs: | |
test-node-js: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [16, 18] | |
name: Node.js v${{ matrix.node-version }} | |
steps: | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Bun | |
run: | | |
curl -fsSL https://bun.sh/install | bash | |
echo 'export BUN_INSTALL="$HOME/.bun"' >> $GITHUB_ENV | |
echo 'export PATH="$BUN_INSTALL/bin:$PATH"' >> $GITHUB_ENV | |
source $GITHUB_ENV | |
- name: Verify Bun installation | |
run: bun --version | |
- name: Install dependencies | |
run: bun install | |
- name: Run checks | |
run: bun run make check | |
- name: Run tests | |
run: bun run make test |