chore: Bump actions/checkout from 3 to 4 #86
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: Lambda Runners | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
paths: | |
- .github/workflows/lambda-runners.yml | |
- "modules/runners/lambdas/runners/**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [14, 16] | |
container: | |
image: node:${{ matrix.node }} | |
defaults: | |
run: | |
working-directory: modules/runners/lambdas/runners | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: yarn install | |
- name: Run prettier | |
run: yarn format-check | |
- name: Run linter | |
run: yarn lint | |
- name: Run tests | |
run: yarn test | |
- name: Run two tests in isolation | |
run: | | |
yarn run test src/scale-runners/scale-up.test.ts -t 'scaleUp with GHES on org level creates a runner with labels in s specific group' --coverage=false | |
yarn run test src/scale-runners/scale-up.test.ts -t 'scaleUp with public GH on org level creates a runner with labels in s specific group' --coverage=false | |
- name: Build distribution | |
run: yarn build |