Publish - Release Candidates as next #21
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: Node.js CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
types: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Install Bun | |
run: | | |
curl -fsSL https://bun.sh/install | bash | |
export PATH="$HOME/.bun/bin:$PATH" | |
- name: Cache node modules | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules | |
~/.bun/install/cache | |
key: ${{ runner.os }}-bun-${{ hashFiles('bun.lockb') }} | |
restore-keys: | | |
${{ runner.os }}-bun- | |
- name: Install, Lint & Build | |
run: | | |
export PATH="$HOME/.bun/bin:$PATH" | |
bun install --frozen-lockfile | |
bun lint | |
bun run build |