chore: use gha instead of drone #8
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: "npm" | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
jobs: | |
test: | |
runs-on: arc-runner | |
env: | |
FORCE_COLOR: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install packages | |
run: sudo apt-get update && sudo apt-get install -y curl xz | |
- uses: cachix/install-nix-action@v23 | |
- uses: cachix/cachix-action@v12 | |
with: | |
name: devenv | |
# - name: Install devenv.sh | |
# run: nix profile install tarball+https://install.devenv.sh/latest | |
# | |
- name: Setup For Test | |
shell: devenv shell bash -e {0} | |
run: | | |
mkdir $HOME/.aws | |
vault kv get -mount="secret" -field credentials "ci/aws" > $HOME/.aws/credentials | |
aws --endpoint-url http://100.82.97.39:9000 s3 cp s3://repo-obsidian-kobo-highlights-import/KoboReader.sqlite KoboReader.sqlite | |
- name: Test | |
shell: devenv shell bash -e {0} | |
run: npm run test |