Rename some of the events.

This commit is contained in:
Luke Curley 2023-05-22 20:22:25 -07:00
parent 2b943aee8a
commit 062cda0b12
2 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
name: Server name: server
on: on:
push: push:
@ -10,14 +10,14 @@ env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
jobs: jobs:
build: check:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Build - name: build
working-directory: server working-directory: server
run: cargo build --verbose run: cargo build --verbose
- name: Test - name: test
working-directory: server working-directory: server
run: cargo test --verbose run: cargo test --verbose

View File

@ -1,4 +1,4 @@
name: Web name: web
on: on:
push: push:
@ -7,20 +7,20 @@ on:
branches: [ "main" ] branches: [ "main" ]
jobs: jobs:
build: check:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Install - name: install
working-directory: web working-directory: web
run: yarn install run: yarn install
- name: Cert - name: cert
working-directory: cert working-directory: cert
run: ./generate run: ./generate
- name: Build - name: build
working-directory: web working-directory: web
run: yarn build run: yarn build
- name: Lint - name: lint
working-directory: web working-directory: web
run: yarn lint run: yarn lint