2021-12-07 11:35:47 +01:00
|
|
|
name: 'challenges'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
pull_request:
|
|
|
|
branches: [master]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test-solutions:
|
|
|
|
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-08-10 11:28:54 +02:00
|
|
|
- uses: 'actions/checkout@v3.5.3'
|
2021-12-07 11:35:47 +01:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2023-05-13 18:48:23 +02:00
|
|
|
- name: 'Setup Docker'
|
2021-12-07 11:35:47 +01:00
|
|
|
uses: 'actions-hub/docker/cli@master'
|
|
|
|
env:
|
|
|
|
SKIP_LOGIN: true
|
|
|
|
|
2023-05-13 18:48:23 +02:00
|
|
|
- name: 'Setup Node.js'
|
2023-08-10 11:28:54 +02:00
|
|
|
uses: 'actions/setup-node@v3.7.0'
|
2021-12-07 11:35:47 +01:00
|
|
|
with:
|
2022-02-19 18:30:29 +01:00
|
|
|
node-version: 'lts/*'
|
2021-12-07 11:35:47 +01:00
|
|
|
cache: 'npm'
|
|
|
|
|
2023-05-13 18:48:23 +02:00
|
|
|
- name: 'Install dependencies'
|
|
|
|
run: 'npm clean-install'
|
2021-12-07 11:35:47 +01:00
|
|
|
|
|
|
|
- name: 'Build'
|
|
|
|
run: 'npm run build'
|
|
|
|
|
|
|
|
- name: 'Install programming-challenges'
|
|
|
|
run: 'npm install --global'
|
|
|
|
|
|
|
|
- uses: 'nrwl/last-successful-commit-action@v1'
|
|
|
|
id: 'last_successful_commit'
|
|
|
|
with:
|
|
|
|
branch: 'master'
|
2022-04-24 20:48:38 +02:00
|
|
|
workflow_id: 'challenges.yml'
|
2021-12-07 11:35:47 +01:00
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: 'Test'
|
2022-09-22 16:22:25 +02:00
|
|
|
run: 'programming-challenges run test --affected --base=${{ steps.last_successful_commit.outputs.commit_hash }}'
|