Skip to content

Bump passport from 0.4.1 to 0.6.0 #4

Bump passport from 0.4.1 to 0.6.0

Bump passport from 0.4.1 to 0.6.0 #4

Workflow file for this run

name: PR Checks
on: [pull_request]
permissions:
contents: read
pull-requests: write
jobs:
install:
name: Install
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: yarn install --immutable
lint:
name: Lint
runs-on: ubuntu-latest
needs: install
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: yarn install --immutable
- run: echo "Linting step - configure linter when ready"
test:
name: Test
runs-on: ubuntu-latest
needs: install
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: yarn install --immutable
- run: yarn test
build:
name: Build
runs-on: ubuntu-latest
needs: install
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: yarn install --immutable
- run: echo "Build step - API doesn't require compilation, dependencies installed successfully"