2023-10-23 23:16:24 +02:00
|
|
|
name: "challenges"
|
2021-12-07 11:35:47 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
pull_request:
|
|
|
|
branches: [master]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test-solutions:
|
2023-10-23 23:16:24 +02:00
|
|
|
runs-on: "ubuntu-latest"
|
2022-04-23 18:41:14 +02:00
|
|
|
timeout-minutes: 30
|
2021-12-07 11:35:47 +01:00
|
|
|
steps:
|
2023-12-26 23:05:18 +01:00
|
|
|
- uses: "actions/checkout@v4.1.1"
|
2021-12-07 11:35:47 +01:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- name: "Setup Docker"
|
|
|
|
uses: "actions-hub/docker/cli@master"
|
2021-12-07 11:35:47 +01:00
|
|
|
env:
|
|
|
|
SKIP_LOGIN: true
|
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- name: "Setup Node.js"
|
2023-12-26 23:05:18 +01:00
|
|
|
uses: "actions/setup-node@v4.0.1"
|
2021-12-07 11:35:47 +01:00
|
|
|
with:
|
2023-10-23 23:16:24 +02:00
|
|
|
node-version: "lts/*"
|
|
|
|
cache: "npm"
|
2021-12-07 11:35:47 +01:00
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- name: "Install dependencies"
|
|
|
|
run: "npm clean-install"
|
2021-12-07 11:35:47 +01:00
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- name: "Build"
|
|
|
|
run: "npm run build"
|
2021-12-07 11:35:47 +01:00
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- name: "Install programming-challenges"
|
|
|
|
run: "npm install --global"
|
2021-12-07 11:35:47 +01:00
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- uses: "nrwl/last-successful-commit-action@v1"
|
|
|
|
id: "last_successful_commit"
|
2021-12-07 11:35:47 +01:00
|
|
|
with:
|
2023-10-23 23:16:24 +02:00
|
|
|
branch: "master"
|
|
|
|
workflow_id: "challenges.yml"
|
2021-12-07 11:35:47 +01:00
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- name: "Test"
|
|
|
|
run: "programming-challenges run test --affected --base=${{ steps.last_successful_commit.outputs.commit_hash }}"
|